人を定義するクラス (People) があり、次のメンバーが含まれています。
public int socialSecurityNr;
public string name;
public int age;
public double heigth;
public double weigth;
public string Nationality;
public int shoeSize;
ここで、社会保障番号の値を挿入し、残りのフィールドを null 値に設定するクラスのコンストラクターを作成したいと考えています。私はこれを試しました:
public People(int socialSecurity, string NAME, string AGE, double HEIGTH)
{
socialSecurity= socialSecurityNr;
this.name = null;
this.age = null;
this.weigth = 0;
}
これは、社会保障番号を設定し、残りを null に設定するコンストラクターを宣言する正しい方法ですか?
(問題は、新しい人を作成するときに、その人に名前、年齢、身長などを与えることができるはずです.)