/*
小練習1:寫出程式結果
*/package com.test4;
class test
} public class lianxi_2 extends test
lianxi_2(string s)
public static void main(string args)
}
結果:
/*
小練習2:寫出程式結果
*/package com.test4;
inte***ce a
{}class b implements a
}public class lianxi
}
//執行結果:編譯失敗,a中沒有定義func方法。
/*
小練習3:補足**
*/package com.test4;
inte***ce inter
public class lianxi_4
}
答案:
inte***ce inter
public class lianxi_4
static inter diaoyong()
public void func()
};
}}
還可以這樣:
inte***ce inter2
public class lianxi_5
public void func()
};in.show(1, 2);
in.func();
}}
/*
練習4*/package com.test5;
class fu }
class zi extends fu
//可以,覆蓋
b.private int show(int a,int b)//不可以,許可權不夠
c.private int show(int a,long b)//可以,不是乙個函式,相當過載
d.public short show(int a,int b)//不可以,不能和父類show函式同時出現
在同乙個類中,或者子父類中。
e.static int show(int a,int b)//不可以。靜態方法只能覆蓋靜態方法。
*/ }
public class lianxi_6
}
C 基礎練習篇
c 的基礎學習 ifdef test 1 花括號的隱蔽性 結果 括號之外無法訪問括號之內的變數 include using namespace std int main void std cout out value out value std endl system pause return 0 ...
C語言基礎練習14
1.有3個學生的資訊,放在結構體陣列中,要求輸出全部學生的資訊 include stdafx.h includestruct student struct student stu 3 int main 執行結果 2.寫一函式建立乙個有3名學生資料的單向動態鍊錶並輸出鍊錶 include stdafx...
python實戰訓練 基礎練習 14
題目 輸入3個數a,b,c,按大小順序輸出。程式分析 同例項005。raw for i in range 3 x int input int d i for i in range len raw for j in range i,len raw if raw i raw j raw i raw j ...