java this與super

來源:互聯網
上載者:User

標籤:

以一個例子的形式來說明this 和 supper 的用法區分

在構造方法中,如果想使用父類方法,可以用supper.方法名 的方式來訪問父類中的方法。

在類中,如果方法的變數名稱與類中變數名稱相同,則可以用this.變數名 來表示方法中的變數(否則該變數會自動視為類中的變數)

class Persion{

public int c;
private String name;
private int age;
protected void setName(String name){
this.name=name;
}
protected void setAge(int age){
this.age=age;
}
protected void print(){
System.out.println("Name="+name+"Age="+age);
}
}
public class TestPersion extends Persion{
public void print(){
System.out.println("this supper demo");
super.print();
}
public static void main(String args[])
{
TestPersion tsd=new TestPersion();
tsd.setName("robert");
tsd.setAge(22);
tsd.print();
}
}

java this與super

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.