Advertisement
jaVer404

level05.lesson07.task03

Apr 2nd, 2015
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.75 KB | None | 0 0
  1. package com.javarush.test.level05.lesson07.task03;
  2.  
  3. /* Создать класс Dog
  4. Создать класс Dog (собака) с тремя инициализаторами:
  5. - Имя
  6. - Имя, рост
  7. - Имя, рост, цвет
  8. */
  9.  
  10. public class Dog
  11. {
  12.     //Напишите тут ваш код
  13.     String name;
  14.     int height;
  15.     String color;
  16.  
  17.     public void initialize (String name) {/*- Имя*/
  18.         this.name = name;
  19.     }
  20.  
  21.     public void initialize (String name, int height) {
  22.         this.name = name;
  23.         this.height = height;
  24.     }
  25.  
  26.     public void initialize (String name, int height, String color) {/*- Имя*/
  27.         this.name = name;
  28.         this.height = height;
  29.         this.color = color;
  30.     }
  31.  
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement