I stayed up till 3 last night reading till my eyes bled. This is homework, but I need a "nudge". I can't find how to sort by name.
My Questions: (Please keep answers beginner friendly)
- Does what have look right so far?
- How to sort?
- Does anyone have recommendations for optimizing/cleaning this?
Here is the assignment:
The Inventory Program Part 2 checkpoint that is due in week 6 has the following requirements:
Modify the Inventory Program so the application can handle multiple items. Use an array to store the items.
The output should display the information one product at a time, including the item number, the name of the product, the number of units in stock, the price of each unit, and the value of the inventory of that product.
In addition, the output should display the value of the entire inventory.
Create a method to calculate the value of the entire inventory.
Create another method to sort the array items by the name of the product.
To satisfy these requirements, you will need to add the following to your Inventory class (not product class):
1) Declare an array of type Product (a private instance variable)
2) Inside your main while loop, do the following:
a. Instantiate a product object b. Populate the product object with the input from the console (like Inventory Part 1 does) c. Add the product object reference to the next element in your array d. Destroy the reference to the product object variable (note this object was added to your array so you can set the local variable that refers to the object to null)
3) Outside of your main while loop, do the following:
a. Call a method in your Inventory class to sort the array of Product objects. Note you need to sort an array of Product objects by the Product Name instance variable. To do this, you will need to create a separate .java file that implements the Comparator interface. You will pass the Product array and implemented Comparator interface class as arguments to the sort method of the Arrays class (part of the Java API). b. Create a For Loop that iterates through the array of Product objects (similar to the one I have below). Invoke the get method on each instance variable and format the output by calling printf. Sample For Loop to use: for ( Product product : productArray ) { Add statements here } c. Call a method in your Inventory class to calculate the total inventory value of all the Product objects in your array.
Here is my code
public class InvTest2{// main method begins
public static void main( String args[] ) {
int version = 2;// Version number
final int invLeng = 5;// Declare Inv length
// Welcome message
System.out.printf( "\n%s%d\n" ,
"Welcome to the Inventory Program v.", version );
Inv[] DVDs = new Inv[invLeng];
DVDs[0] = new Inv("The Invisible Man", 0, 8.50); // new DVD constructor
DVDs[1] = new Inv("The Matrix", 1, 17.99);
DVDs[2] = new Inv("Se7en", 7, 12.99);
DVDs[3] = new Inv("Oceans Eleven", 11, 9.99);
DVDs[4] = new Inv("Hitch Hikers Guide to the Galaxy", 42, 18.69);
// Display formatted results
int c = 0;
double runningValue = 0;
System.out.printf( "\n%s\n", "Inventory of DVD movies");
while(c != DVDs.length){
System.out.printf( "\n\n%s%d\n%s%s\n%s%d\n%s%,.2f\n%s%,.2f\n",
"Item Number: ",c,
"DVD Title: ",DVDs[c].getdvdTitle(),
"Copies in stock: ",DVDs[c].getdvdInStock(),
"Price each disk: $",DVDs[c].getdvdValue(),
"Value of copies: $",DVDs[c].getdvdStockValue());//End print
runningValue += DVDs[c].getdvdStockValue();
c++;
}
System.out.printf( "\n%s%,.2f\n",
"Collection Value: $",runningValue);
}// end method main
}//end class Inventory1
Here is inventory
public class Inv {//Begin DVD class
// Declare instance variables
String dvdTitle;// Declare title as string
int dvdInStock;// Declare dvdInStock as float
double dvdValue;// Declare dvdValue as float
// constructor initializes DVD information
public Inv(String title, int inStock, double value) { // Initialize (clear) instance variables here
dvdTitle = title;
dvdInStock = inStock;
dvdValue = value;
} // end constructor
public String getdvdTitle() {// public method to get the DVD name
return dvdTitle;}// end method getdvdTitle
public int getdvdInStock() {// public method to retrieve the dvdInStock
return dvdInStock;} // end method get dvdInStock
public double getdvdValue() {// public method to retrieve the dvdValue
return dvdValue;} // end method get dvdValue
public double getdvdStockValue() {// public method to dvdStockValue
return ( dvdValue * dvdInStock );}// end method get dvdStockValue
} // end class Inv