Search:

Type: Posts; User: Norm

Search: Search took 0.13 seconds.

  1. Replies
    4
    Views
    591

    Re: Issue with initialising Array

    Yes, that is a way to fill in an array, except use the array's length attribute not a hardcoded value like 40.

    My question about the code is why is it using an array instead of some Java...
  2. Replies
    4
    Views
    591

    Re: Issue with initialising Array

    Declaring an array of objects creates the structure with slots for instances of the class, but does NOT create the instances which means all the slots in the array have null values. You need to...
Results 1 to 2 of 2