今天學(xué)習(xí)內(nèi)容為方法(函數(shù))斋否,難度一般裙品,還需要多加練習(xí)段直,下面是自己總結(jié)的今日知識(shí)點(diǎn)寓落。
1.方法的語法結(jié)構(gòu):
public static 返回值類型(void)方法名([數(shù)據(jù)類型1:參數(shù)名2,數(shù)據(jù)類型2:參數(shù)名2]){
方法體;
[return]
}
eg:public static int min(){
方法體? ;
return? ;
}
2.方法的重載
在一個(gè)類中有兩個(gè)以上同名的方法,但是參數(shù)不同(兩個(gè)方法的參數(shù)的個(gè)數(shù)不同在跳,或參數(shù)的類型不同)枪萄,跟返回值無關(guān)。
eg: public static int num (int1,int2);
public static int num (int1,int2,int3);------true
public static float num (float1,float2);-----true
public static void num (int1,int2);----------false
3.知識(shí)回顧
Random方法:隨機(jī)生成數(shù)
語法:? 1.導(dǎo)包
2.Random r = new Random();
3.int num = r.nextInt(范圍);
Scanner方法:鍵盤錄入
語法:? 1.導(dǎo)包
2.Scanner sc = new Scanner (System.in);
3.int a = sc.nextInt();