java構造方法

構造方法:用來構造類的實例(每個類都默認有一個無參的構造方法,得使用new調用)ide

字段:類或對象所包含的數據,對類狀態的一種描述;this

方法:類或對象的特徵或行爲對象

 

做用:it

給類中的字段進行初始化,能夠用來建立對象。class

 

特色:方法

方法名與類名相同總結

不用定義返回值類型數據

不須要寫return語句di

 

個人總結:view

注意:

默認構造方法的特色。

多個構造方法是以重載的形式存在的。

 

構造方法的重載:(須要哪一個就去適配哪一個,調用哪一個)

              this([實參]);調用當前類的構造方法

              注意: this([實參]);必須放在構造器的第一行;

 

 

對象的產生格式:

類名稱  對象名 = new  類名稱();

由於有(),因此是方法,實際上它就是構造方法,而且是非私有的構造方法。

如:CellPhone cp = new CellPhone();

 

Eg:

class Person{

    private String name;

    private int age;

    private int sal;

   

    public void show(){

        System.out.println("我的狀況:"+name+age+sal);

    }

 

    public Person(String name) {

        super();

        this.name = name;

    }

 

    public Person(String name, int age) {

        super();

        this.name = name;

        this.age = age;

    }

 

    public Person(String name, int age, int sal) {

        super();

        this.name = name;

        this.age = age;

        this.sal = sal;

    }

}

相關文章
相關標籤/搜索