Advertisement
desant74268

OOPHW

Jan 19th, 2022
822
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. package ru.itsjava.oop.hw;
  2.  
  3. import lombok.AllArgsConstructor;
  4. import lombok.Data;
  5.  
  6.  
  7.  
  8. public class Parrot extends Bird{
  9.  
  10.     private static final String species = "Parrot";
  11.  
  12.     public Parrot() {
  13.         super(species, 40);
  14.     }
  15. }
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement