using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.threading.tasks;
namespace 複習
//列印物件的時候使用的get方法
set
_name = value; }//給物件賦值的時候使用的set方法
}//_age 字段
int _age;
public int age
return _age; }
set
}//_gender欄位
char _gender;
public char gender
return _gender; }
set
}//方法
public void sayhello()
,,", this.name, this.age, this.gender);//當前類的物件
}//建構函式 沒有返回值 void也沒有
// 建構函式的名稱和類名一樣
public person(string name, int age, char gender)
}}
using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.threading.tasks;
namespace 複習
}}
C 建構函式 例子
建構函式,去掉this class person public person string name,string int age,double weight public void eatfood double quanity class program age weight firstman.n...
C 建構函式例子
已知string類定義如下 class string public string constchar str null 通用建構函式 string conststring another 拷貝建構函式 string 析構函式 string operater const string rhs 賦值函式...
字元函式例子
要查詢以某個字結尾等於什麼的記錄 select from vehicle 車牌號以7結尾的資料記錄 select from vehicle t where trim t.veh no like 7 用函式的方式 select from vehicle t where substr trim t.ve...