I need to make a number of distinct objects of a class at runtime. This number is also determined at runtime.
Something like if we get int no_o_objects=10 at runtime.
Then I need to instantiate a class for 10 times.
Thanks
Read about Arrays in the Java Tutorial.
class Spam {
  public static void main(String[] args) {
    int n = Integer.valueOf(args[0]);
    // Declare an array:
    Foo[] myArray;
    // Create an array:
    myArray = new Foo[n];
    // Foo[0] through Foo[n - 1] are now references to Foo objects, initially null.
    // Populate the array:
    for (int i = 0; i < n; i++) {
      myArray[i] = new Foo();
    }
  }
}
                        If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With