一、代表當前類的例項物件
二、呼叫當前類的建構函式
三、base用法
class person
public int age
public double height
public person(string name, int age, double height)
//此處的this呼叫person類的三個引數的建構函式,將兩個引數的建構函式name和height引數傳給三個引數的建構函式
public person(string name, double height) : this(name, 0, height)
}class student:person
public string id
public double value
}}
FIELD SYMBOLS的兩種用法
第一種,把fs當做乙個泛型,什麼東西都可以放進去 data begin of man,name type str,20 type c,height type i,end of man.data a man like man.a man name 阿勇 a man f a man height 171...
Android Intent的兩種用法
intent是android元件之一,是用於連線四大元件的乙個比較重要的部分。intent有兩種用法 一種是顯式intent,如果用於啟用activity就這樣寫 intent intent new intent this,testactivity.class startactivity 一種是隱式...
Handler的兩種用法
android 為了執行緒安全,只允許在主線程中修改ui,如果想在子執行緒中更改ui,可以使用handler.用法一 在子執行緒中傳送更新資訊 message msg message.obtain msg.what 1 bundle data new bundle data.putstring so...