Java experimental questions 3_8_ Lindaru equalities station

Source: Internet
Author: User

Import Java.util.scanner;class Employee {    Private String name;//employee name Public    employee () {};p Ublic employee ( String s) {//constructor, initialize employee name this.name = s;} Public String GetName () {//Get the Clerk name return name;}} Class Manager extends employee{string department;public Manager (String a,string b) {super (a);d epartment=b;} Public String getdepartment () {return department;}} Write your own Codespublic class main {public static void main (string[] args) {Scanner SCA = new Scanner (system.in); 
   
    string str = Sca.next ();        String str1 = Sca.next ();            Manager m = new manager (str, str1);            System.out.println ("Name:" +m.getname () + "department:" +m.department);}}
   

****************************************************************************

Subclasses need to use super () when calling the constructor of the parent class, to invoke the hidden variables in the parent class;

A subclass member variable cannot call a parent class private variable directly.

Java experimental questions 3_8_ Lindaru equalities station

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.