7、下列方法定義中,正確的是(
a)。
a)int x( int a,b )
b)double x( int a,int b)
c)double x( a,b )
d)nt x( int a,int b)
8、下列方法定義中,正確的是(d)。
a)void x( int a,int b ); //void不用返回
b)x( int a,int b)
c)double x
d)int x( int a,int b)
9、下列方法定義中,不正確的是(d)。
a)float x( int a,int b )
b)int x( int a,int b)
c)int x( int a,int b )
d)int x(int a,int b)
10、下列方法定義中,正確的是(a)。
a)int x( )
b)void x( )
c)int x( )
d)nt x( int a, b)
11、下列方法定義中,方法頭不正確的是(
d )。
a)public int x( )
b)public static int x( double y )
c)void x( double d )
d)public static x( double a )
12、在某個類中存在乙個方法:void getsort(int x),以下能作為這個方法的過載的宣告的是(c )。
a)public getsort(float x)
b)int getsort(int y) //引數型別一樣
c)double getsort(int x,int y)
d)void get(int x,int y)
13.在某個類中存在乙個方法:void sort(int x),以下不能作為這個方法的過載的宣告的是(b )。
a)public float sort(float x)
b)int sort(int y)
c)double sort(int x,int y)
d)void sort(double y)
14.為了區分類中過載的同名的不同方法,要求( a )。
a)採用不同的形式引數列表
b)返回值型別不同
c)呼叫時用類名或物件名做字首
d)引數名不同
java構造方法練習
運用構造方法可以對屬性 成員變數初始化 書寫 構造方法需要與其所在類有完全相同的名字,無返回值 無返回值型別 如 class example 在初始化物件時,構造方法系統自動呼叫,構造方法無法手動呼叫 構造方法可以同名,區分看引數個數,型別,順序,初始化時後面的括號有無引數可判斷出,系統自動呼叫了哪...
java建構函式練習
建構函式 物件一建立就會呼叫與之對應的建構函式 建構函式的作用,可以用於給物件進行初始化 建構函式小細節 必須初始化物件才能建立出來 當乙個類中沒有定義建構函式時,那麼系統會預設給該類加入乙個空引數的建構函式。當在類中自定義了建構函式後,預設的建構函式就沒有了。public class test c...
java的練習 繼承中的構造方法
class person person string name,int age public void info 可以寫成有返回值型別,我寫成了無返回值型別了 class teacher extends person teacher string name,int age,string positi...