- This event has passed.
7 PM – Intro To Java
December 9, 2021 @ 7:00 pm - 8:00 pm
Homework
- Create a class Animal inside a new file Animal.java
- Inside this class, it will have the following attributes:
- String name
- int age
- String type
- boolean canFly;
- Create Animal constructor with the same parameters as the attribute above
- Create the methods getName, getAge, getType and getCanFly