Andy's blog

If you always do what you've always done, you'll always get what you've always got.

0%

2020-11-10-物件導向2

延續昨天筆記內容


參考資料:
ITHandyGuy Tutorial


Interface、Class、Sub-Class

  • Interface 都是I開頭
  • Interface 不能包含 Field 如下範例
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
public class IDemo
{
string model; //這樣寫法是錯的,不能包含Field
string model { get; set; } //這樣才對

}


//複習記憶筆記(Class)
public class Demo
{
//Field 有點像ColumnName欄位
private string _Test = "111";

//Property 是一種特別的method to replace get and set
public double Count {get;set;}

}

  • Class 可參考昨天筆記
  • SubClass 繼承父層