This is copying an object with a constructor?
What would copying using a method look like if thats true?
Can you explain and give me an example of what to do between creating objects that copy using either the copy constructor or copy method.
Inventory i3 = new Inventory(i2); System.out.println(i3);
What would copying using a method look like if thats true?
Can you explain and give me an example of what to do between creating objects that copy using either the copy constructor or copy method.