Lets say I have 2 classes:
public class Carinfo {
private String Car;
private Carinfo [] value;
Carinfo (String someCar, int carValue) {
this.car = someCar;
//At this point I want the "int carValue" to initialize private Carinfo [] value
}
The second class creates car objects, for this example I'll do it with an array
public class Generatecar {
Carinfo[] mycars = new Carinfo[1];
public Generatecar {
mycars[0] = new Carinfo("Lada", 9000);
}
What I want is to insert the carValue into the private Carinfo [] value; array. How do I initialize the array within the Carinfo constructor?
If I said something that is unclear, please let me know.

GenerateCarclass, if you are fixing it's size to1. Why not just have plainCarinforeference? – Rohit Jain Jan 24 at 19:07Carinfos inside itself doesn't make sense, IMO. – Bhesh Gurung Jan 24 at 19:08Carinfocontain an array ofCarinfos? What does this array represent and how will it be populated (without infinite recursions)? Perhaps you should elaborate on what these classes should represent and what you're trying to accomplish, rather than just posting code without any context. – Mattias Buelens Jan 24 at 19:08