Learn the Super keyword for Java tutorials

Source: Internet
Author: User

Learn to program the Java Tutorial Super keyword tutorial released, welcome to visit through Xuebiancheng8.com.

The previous lesson analyzed the use of this keyword, this keyword has two functions, the first function is to access the current object construction method, the second role is to access the current object construction method, in fact, super and this keyword function similar, super's role has access to the parent class construction method, The second function accesses the properties and methods of the parent class.

Let's analyze the role of super keywords. First look at an example

public class person{

Private String username;

private String password;

.... Setter Getter omitted

Public person () {

SYSTEM.OUT.PRINTLN ("Access construction Method");

}

}

public class Student extends person{

Public Student () {

Super (); To access the constructor of the parent class, only on the first row

Super.setusername ("Hello"); Access the Setusername method of the parent class, calling the method of the parent class

}

}

In the example above, use the

Super (); To access the constructor of the parent class, only on the first row

Super.setusername ("Hello"); Access the Setusername method of the parent class, calling the method of the parent class

Above is the use of super.

For more information, please visit xuebiancheng8.com via the website:

Http://xuebiancheng8.com/play/goodgoodstudy_141_daydayup.html


Learn the Super keyword for Java tutorials

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.