[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[jfriends-ml 10505] Re: そろそろ日本 語でコーディングしても ...



宮本@muimiです。

>  public double 価格() {
>    final double 基本価格 = 数量 * 単価;
>    final double 数量割引 = Math.max(0, 数量 - 500) * 単価 * 0.05;
>    final double 送料     = Math.min(基本価格 * 0.1, 100.0);
>    return 基本価格 - 数量割引 + 送料;
>  }

うむむむむ。
見やすいかも!



1つ作ってみました。

#set/get日本語はちょっとかっこわるい。
 (でもset/getじゃないとJavaBean命名規則を使うツールを使えない)
#日本語クラスのmainから実行できないですかね?



package 日本語ですか;

public class 都道府県 {

	private final String 名前;
	
	private int 人口;

	private long 補助金;

	public 都道府県(String 名前){
		this.名前 = 名前;
	}


	public int get人口() {
		return 人口;
	}

	public String get名前() {
		return 名前;
	}

	public long get補助金() {
		return 補助金;
	}

	public void set人口(int 人口) {
		this.人口 = 人口;
	}

	public void set補助金(long 補助金) {
		this.補助金 = 補助金;
	}

	public static void main(String[] args) {
		都道府県 けん = new 都道府県("高知");
		けん.set人口(30);
	}

}