我們經常可以利用類的建構函式進行一些跨頁面傳值,初始化等工作.
例如 乙個 winform:
c#:
private
string rtn_type =
""public frmtest (
string rtntype)
:this()
在別的頁面呼叫:
frmtest frmtest =
new frmtest (
"add");
frmtest.
show()
;
vb:private rtn_type as string =
""''constructor
subnew(
byval rtntype as string)
initializecomponent
() ' 如果沒有,注意加這個
me.rtn_type = rtntype
end sub
在別的頁面呼叫:
dim frmrptprjmg =
newfrmreportprojectmg
("reportproject"
) frmrptprjmg.
showdialog
()
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 賦值函式...
c 建構函式 例子學習
using system using system.collections.generic using system.linq using system.text using system.threading.tasks namespace 複習 列印物件的時候使用的get方法 set name v...