嗨,大家好,今天是視窗程式設計第二十六天的影片教學,在昨天的影片教學已經有講解有關 Class 類別以及 Object 物件的概念,今天要來講解有關 Method 方法的概念。
Method 方法,其實在實作上和 function相當類似,可以這樣想:Method 是專屬於該 Class 所產生的 Object 可使用的 function,也就是只有該 Class 的 Object 可以使用在該 Class 內建立的 Method。
關於 Method 的建立,一開始一樣需要間建立 Class;接著,在 Class 內定義 Method;在 Object 建立後就可以使用該 Method,程式語法如下:
// 宣告 class 和其屬性和method
class Person
{
public double height;
public double weight;
public void bmiCount(double h, double ,w)
{
label.Text = (w / h / h).ToString();
}
}
// 建立物件
Person p1 = new Person();
p1.height = 1.5;
p1.weight = 40;
p1.bmiCount(p1.weight,p1.height); // 使用 method
以上就是今天的教學,感謝大家觀看。
簡報製作:canva(https://www.canva.com/)