How to use array of objects in Java

1 Answer

0 votes
package javaapplication1;

class Car {
  public String  manufacturer;
  public String model;
  public float price;
  public Car(String man, String mod, float pri) {
    manufacturer = man;
    model = mod;
    price = pri;
  }
}
public class JavaApplication1 {
    
    public static void main(String[] args) {

        Car[] c = new Car[3];
        
        c[0] = new Car("Audi", "2016 Audi SQ5", 53000);
        c[1] = new Car("Buick", "2016 Buick Enclave", 39000);
        c[2] = new Car("GMC", "2016 GMC Acadia", 31000);
        
        for (int i = 0; i < c.length; i++)
            System.out.println(c[i].manufacturer + " " + c[i].model + " " + c[i].price);
    }
}


/*
run:

Audi 2016 Audi SQ5 53000.0
Buick 2016 Buick Enclave 39000.0
GMC 2016 GMC Acadia 31000.0

*/

 



answered Jul 4, 2017 by avibootz

Related questions

1 answer 97 views
97 views asked Mar 12, 2023 by avibootz
1 answer 150 views
150 views asked Sep 6, 2020 by avibootz
2 answers 140 views
140 views asked Nov 4, 2023 by avibootz
2 answers 142 views
4 answers 355 views
355 views asked Jul 25, 2019 by avibootz
1 answer 169 views
...