Question
Please answer in JAVA Instructions 1. Create a class named after your favorite object in the whole world. For example, if you love pizza, then
Please answer in JAVA
Instructions 1. Create a class named after your favorite object in the whole world. For example, if you love pizza, then create a class called Pizza.java. This class should not have a main method (1 point) 2. Create Instance Variables (attributes) (2 point) Create at least 3 private instance fields (attributes) for your class You must use at least 3 different data types for your fields 3. Create getter (accessor) and setter (mutator) methods Create a getter (accessor) method for each of your instance variables (1 point) Create a setter (mutator) method for each of your instance variables (1 point) 4. Create a Method called display(), that simply prints out the values of all instance variables of your object (2 points) 5. Create any other method of your choice that increments or decrements any one of the objects instance fields. Test out the method for at least one of your objects. (2 point) 6. Create 2 Constructors Create a default constructor (no parameters) that assigns all your instance variables to default values (1 points) Create a parameterized constructor that takes all instance variables as parameters, and sets the instance variables to the values provided by the parameters (2 points) 7. Testing your program (4 points) Create a class called Driver.java. This class will contain your main method Create 2 instances of your class by using the default constructor. Call all your objects set methods to assign values to your object Create 2 instances of your class by using the parameterized constructor 8. Put all of your objects in an array, loop through the array, and call the display method on each object (2 points) 9. Add JavaDoc style comments above all methods and classes (2 points)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started