Java Super Keyword Usage example parsing _java

Source: Internet
Author: User

This example describes the use of the Super keyword in java. Share to everyone for your reference. The specific methods are analyzed as follows:

Super keyword: Use super in Java to refer to the composition of the base class.

The program code is as follows:

Class fatherclass{public
  int value;
  public void F () {
    value = m;
    System.out.println ("Fatherclass.value:" +value);
  }
Class ChildClass extends fatherclass{
  private int value;
  public void F () {
    super.f ();
    value=200;
    System.out.println ("Childclass.value:" +value);
    System.out.println (value);
    System.out.println (Super.value);
  }
public class testinherit{public
  static void Main (String args[]) {
    childclass cc = new ChildClass ();
    CC.F ();
  }


The output is shown in the following illustration:

The memory distribution is shown in the following illustration:

I hope this article will help you with your Java programming.

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.