Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package smth;
- public class CatManipulating {
- public static void main(String[] args) {
- Cat someCat = new Cat();
- someCat.sayMiau();
- System.out.printf("The color of cat %s is %s.%n",
- someCat.name, someCat.getColor());
- Cat myBrownCat = new Cat("Johnny", "white");
- myBrownCat.sayMiau();
- System.out.printf("The color of cat %s is %s.%n",
- myBrownCat.name, myBrownCat.getColor());
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement