Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am converting to Java from Javascript (cause of university) and cannot seem to come around to the logic of array / object assignment. What I'm trying to achieve is to have something like used to be in Pascal "record" with different variables. This then call in main class and create few instances of that. This is the simple structure I have for example:

class shoppingCart {
    public static void main(String[] args){
        // Define objects
        Product[] products = new Product[3];        

        // Fill in products
        products[0] = {
            title: "Product 1",
            code: "AB432",
            price: 13.60,
            quantity: "dozen"
        }                    
    }
}

class Product {
    public String title;
    public String code;
    public float price;
    public String quantity;
}

Can someone please point me the right way how to create "records" and how to assign values to them? I had the same problem with array in Java before when I declared the variable (array) and later tried

someArray = {23,2,32,523}

and compiler gives me error...

share|improve this question
What's your question? – Pradeep Simha Nov 20 '12 at 10:07
You would learn a lot by trying to provide a SSCCE expample. – jlordo Nov 20 '12 at 10:23

3 Answers

up vote 2 down vote accepted

You need to create an object... ideally without using public fields. For example, if you give your Product class a constructor taking the four values, you can use:

Product[] products = 
{
    new Product("Product 1", "AB432", 13.6, "dozen"),
    new Procuct( /* etc */ )
};

Also note that you shouldn't use float to store a price. Use BigDecimal instead, or an integer number of cents/pennies/whatever.

share|improve this answer
Tank you for the answer, didn't think about doing it that way. Nice and clean. But seriously dont understand why the question has 2 down-votes... – Tom Nov 21 '12 at 2:06
@Tom: While neither of the downvotes was mine, "and compiler gives me error" is never a good sign. Any time you've got an error message, you should include it in the question. – Jon Skeet Nov 21 '12 at 6:43

First add a constructor to your product class.

class Product {
    public String title;
    public String code;
    public float price;
    public String quantity;

   public Product(String title, String code, float price, String quantity){
      this.title = title;
      this.code = code;
      this.price = price;
      this.quantity = quantity;
   }
}

Then add instances of product to your array

class shoppingCart {
    public static void main(String[] args){
        // Define objects
        Product[] products = new Product[3];        

        // Fill in products
        products[0] = new Product("Product 1", "AB432", 13.60, "dozen");
        //repeat for other products.
    }
}
share|improve this answer

The convention is Java is what are called Beans (en.wikipedia.org/wiki/JavaBeans), that have private member variables and getter and setter methods. You would initialize it something like...

Product product = new Product();
product.setTitle("Product 1");
product.setCode("AB432");
product.setPrice(13.60);
product.setQuantity("dozen");
products[0] = product;

Also, you can only initialise an array like that when you first declare it...

int[] someArray = {23,2,32,523};
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.