I\'m new in programming and I would like to know where did I go wrong in instantiating an object. Below is the code:
public class Testing{ private int Sa
Well , it's easy. To you instantiate an object in Java you should to use class name and to do with that it class received a valor. For exemplo :
...Car c1 = new Car();
Car c1 = new Car();