看板 C_Sharp 關於我們 聯絡資訊
class Data { private string name; public string Name { get { return name; } set { name = value; } } public Data(string s){ // 請問各位這裡會寫 name = s; // 還是 Name = s; } } -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 61.229.63.110
tomex:call function也是要浪費時間,因此裏頭要寫this.name=s 04/05 02:31
tomex:注意,OO物必有屬的概念,加上this.是很重要的寫作習慣 04/05 02:32