這篇文章主要介紹Java基礎(chǔ):封裝、方法重載、構(gòu)造方法是什么,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)公司是一家專注于成都網(wǎng)站設(shè)計、成都網(wǎng)站建設(shè)與策劃設(shè)計,友誼網(wǎng)站建設(shè)哪家好?創(chuàng)新互聯(lián)公司做網(wǎng)站,專注于網(wǎng)站建設(shè)十年,網(wǎng)設(shè)計領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:友誼等地區(qū)。友誼做網(wǎng)站價格咨詢:028-86922220
1.封裝
class Dog{ String name;//成員變量 int age; private char genter;//加private變?yōu)樗接袑傩?,要提供方法才能在外部進行調(diào)用 public void setGenter(char genter){ //加if語句可以防止亂輸入 if(genter=='男'||genter=='女'){ this.genter=genter;//this.name,這個name為成員變量 }else{ System.out.println("請輸入正確的性別"); } } public char getGenter(){ return this.genter; } } public class Test1{ public static void main(String[] args){ Dog one=new Dog(); one.setGenter('女'); System.out.println(one.getGenter()); } }
2.方法的重載
方法的重載是指一個類中可以定義有相同的名字,但參數(shù)不同的多個方法,調(diào)用時會根據(jù)不同的參數(shù)列表選擇對應(yīng)的方法。
class Cal{ public void max(int a,int b){ System.out.println(a>b?a:b); } public void max(double a,double b){ System.out.println(a>b?a:b); } public void max(double a,double b,double c){ double max=a>b?a:b; System.out.println(max>c?max:c); } } public class Test1{ public static void main(String[] args){ Cal one=new Cal(); one.max(88.9,99.3,120); } }
3.構(gòu)造方法(構(gòu)造函數(shù))
class Dog{ private String name; private int age; Dog(String name,int age){//構(gòu)造方法,public可加可不加 this.name=name; this.age=age; System.out.println("名字:"+this.name+"年齡:"+this.age); } Dog(){ } void get(){//普通方法,public可寫可不寫 System.out.println("我是一個普通方法"); }14 15 }16 public class Test1{ public static void main(String[] args){ Dog one=new Dog("小明",26); Dog two=new Dog(); one.get(); two.get(); } }
以上是Java基礎(chǔ):封裝、方法重載、構(gòu)造方法是什么的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!