Advertisement
sergAccount

Untitled

Jul 10th, 2021
944
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.77 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package com.mycompany.ex19;
  7.  
  8. public class Employee extends Person {
  9.    
  10.     private String company;
  11.    
  12.     public Employee(String name, String lastName, String company){
  13.         // вызов конструктора базового класса
  14.         // super - для вызова конструктора базового класса        
  15.         super(name, lastName);
  16.         this.company = company;
  17.     }
  18.     public String getCompany() {
  19.         return company;
  20.     }
  21.     public void setCompany(String company) {
  22.         this.company = company;
  23.     }
  24.    
  25. }
  26.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement