2ちゃんねる スマホ用 ■掲示板に戻る■ 全部 1- 最新50    

なぜ「staticおじさん」は叩かれたのか?

339 :デフォルトの名無しさん:2021/08/08(日) 19:52:43 ID:ZzxWVxwD.net
>>337
ドメインモデルとデータが違うのはその通り。

悪かった。真面目にコードを書く。

class Box {
public int Height { get; set; }
public int Width { get; set; }
}
これがドメインモデル貧血症

class Box {
public int Height { get; }
public int Width { get; }
public Box(int height, int width) {
if (height <= 0) {
throw new ArgumentOutOfRangeException(nameof(height));
}
if (width <= 0) {
throw new ArgumentOutOfRangeException(nameof(width));
}
Height = height;
Width = width;
} public int Area() {
return Height * Width;
}
}
これがオブジェクト指向

スマホのお陰で改行が狂ってるかもだが。

97 KB
新着レスの表示

掲示板に戻る 全部 前100 次100 最新50
名前: E-mail (省略可) :

read.cgi ver 2014.07.20.01.SC 2014/07/20 D ★