UNB/ CS/ David Bremner/ teaching/ cs1083/ java/ ObjArray.java
public class Computer{
    String name;
    private double price;
    private double performance;

    public Computer(String theName, double thePrice, double thePerformance){
        name=theName;
        price=thePrice;
        performance=thePerformance;
    }

}