octal adj. 八進位制的
hexadecimal n. 十六進製制的
decimal n. 十進位制的
factorial n.階乘
recursive adj.遞迴的
enterprise n.企業
cil:common intermediate language 通用中間語言
jit:just-in-time compiler 即時編譯器
native code 本機**
clr:common language runtime 公共語言執行時(託管**)
單行注釋://
多行注釋:
文件注釋:///
啟動vs:執行-->devenv
開發工具備用:sharpdevelop(大小:11m)
C 程式設計 41 方法複習筆記 彭世瑜 新浪部落格
1 方法的結構 函式 修飾符 返回值型別 方法名 引數列表 2 引數 1 值引數 2 引數陣列 params 沒有傳遞陣列,而傳遞多個相同型別的引數 3 引用引數 ref,不能是常量,必須先初始化 4 輸出引數 out,可以不初始化 3 靜態方法 static 無法呼叫例項類成員,只能訪問靜態成員 ...
C 程式設計 147 執行緒基礎 彭世瑜 新浪部落格
啟動執行緒 threadstart ts newthreadstart method 建立委託例項 thread t newthread ts 建立執行緒 t.start 啟動執行緒 執行緒休眠 t.suspend 執行緒掛起 thread.sleep 1000 執行緒休眠 t.resume 執行緒...
C 程式設計 48 文字控制項複習筆記 彭世瑜 新浪部落格
1 文字控制項 1 標籤label 2 按鈕button 3 文字框textbox 4 有格式文字richtextbox 2 label system.windows.forms.label 設定 屬性面板,size指整個窗體外邊框的大小 clientsize指窗體內邊框大小 random min,...