返回列表 發帖

[9-5]Constructor 建構方法

本帖最後由 李泳霖 於 2024-1-9 11:20 編輯

建構方法-->每創建一個物件都會呼叫的方法,運用在初始化內
建立Person類別,並使用建構方法進行初始化
  1. //class 、 object
  2. using System;
  3. class Program
  4. {
  5.     static void Main()
  6.     {
  7.         Person person1 = new Person(180.3,30,"Kevin");
  8.         Person person2 = new Person(158.5, 16, "Amy");

  9.         Console.WriteLine(person1.name);
  10.         Console.WriteLine(person1.age);
  11.         Console.WriteLine(person1.height);
  12.         Console.WriteLine("=========================");
  13.         Console.WriteLine(person1.name);
  14.         Console.WriteLine(person1.age);
  15.         Console.WriteLine(person1.height);
  16.     }
  17. }
複製代碼
  1. using System;


  2. class Person
  3. {
  4.     public double height;
  5.     public int age;
  6.     public string name;
  7.     public Person(double height, int age, string name)//建構方法,並不可回傳資料
  8.     {
  9.         this.height = height;
  10.         this.age = age;
  11.         this.name = name;
  12.     }


  13. }
複製代碼
istak.teach2@gmail.com

返回列表