您好,登錄后才能下訂單哦!
這篇文章主要介紹Java基礎:封裝、方法重載、構造方法是什么,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
1.封裝
class Dog{ String name;//成員變量 int age; private char genter;//加private變為私有屬性,要提供方法才能在外部進行調用 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.方法的重載
方法的重載是指一個類中可以定義有相同的名字,但參數不同的多個方法,調用時會根據不同的參數列表選擇對應的方法。
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.構造方法(構造函數)
class Dog{ private String name; private int age; Dog(String name,int age){//構造方法,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基礎:封裝、方法重載、構造方法是什么的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。