Advertisement
Azazavr

javarush.test.level05.lesson07.task03

Oct 29th, 2016
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.66 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.     String name;
  13.     int height;
  14.     String color;
  15.    
  16.     public void initialize(String name){
  17.         this.name = name;
  18.     }
  19.     public void initialize(String name, int height){
  20.         this.height = height;
  21.     }
  22.     public void initialize(String name, int height, String color){
  23.         this.name = name;
  24.         this.height = height;
  25.         this.colour = color;
  26.     }
  27.        
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement