------------------ windows phones 7手機開發、.net培訓、期待與您交流! ----------------------
通過這段時間的學習,進行如下總結:
console.writeline();//輸出函式
console.readkey();//獲取使用者按下的下乙個字元或功能鍵
int //整數型別
double//雙精度浮點型
char //字元型
string//字串型
decemal/財務浮點型
//佔位符的使用:
string name="張三";
int year=20;
console.writeline("我叫,我今年歲了。",name,year);
int temp=a;a=b;b=temp//交換兩個變數的值:
+ - * / %//算數運算子
try catch//測試
++ --//自加、自減
&& || !//與、或、非
if else swich case //判斷語句
while do while for//迴圈語句
break continue//跳出迴圈
enum gender//列舉
const//常量
int scores= new int[5];//宣告乙個陣列
//氣泡排序
for(int i=0;ifor(int j=0;jint temp=scores[j];scores[j]=scores[j+1];scores[j+1]=temp;
------------------ windows phones 7手機開發、.net培訓、期待與您交流! ----------------------
黑馬程式設計師 多型總結
asp.net android ios開發 net培訓 期待與您交流!一 認識多型 1,多型體現 父類引用指向自己子類物件 class fu class zi extends fu fu f1 new fu zi z new zi fu f3 new zi 分析上例中fu f1 new fu 和zi...
黑馬程式設計師 HTML總結
一 html簡介 1.html hypertext markup language 2.常用瀏覽器 ie,ff,chrome等 3.靜態頁面與動態頁面 靜態頁面指html,htm格式的網頁,動態頁面是指aspx,php等格式的網頁。4.html基本結構 二 html常用標籤 文字格式 1 只是回車,...
黑馬程式設計師
asp.net android ios開發 net培訓 期待與您交流!map hashtable 底層是雜湊表資料結構,不可以存入null鍵和null值。該執行緒是同步的,jdk1.0出現,效率低。hashmap 底層是雜湊表資料結構,允許使用null鍵和null值。該集合執行緒是不同步的,將has...