Advertisement
jaVer404

level12.lesson06.task01

May 9th, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.39 KB | None | 0 0
  1. package com.javarush.test.level12.lesson06.task01;
  2.  
  3. /* Абстрактный класс Pet
  4. Сделать класс Pet абстрактным.
  5. */
  6.  
  7. public class Solution
  8. {
  9.     public static void main(String[] args)
  10.     {
  11.  
  12.     }
  13.  
  14.     public static abstract class Pet
  15.     {
  16.         public String getName()
  17.         {
  18.             return "Я - котенок";
  19.         }
  20.     }
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement