About 531,000 results
Open links in new tab
  1. How do I declare and initialize an array in Java? - Stack Overflow

    Jul 29, 2009 · The third way of initializing is useful when you declare an array first and then initialize it, pass an array as a function argument, or return an array. The explicit type is required.

  2. Creating an array of objects in Java - Stack Overflow

    That is why you get a NullPointerException You need to create objects separately and assign the reference. There are 3 steps to create arrays in Java - Declaration – In this step, we specify the data …

  3. How can I create a generic array in Java? - Stack Overflow

    Should you need to return an array of a generic type to other code, the reflection Array class you mention is the right way to go. Worth mentioning that wherever possible, you'll have a much happier …

  4. How to initialize an array in Java? - Stack Overflow

    Dec 21, 2009 · When assigning a new array to a declared variable, new must be used. Even if you correct the syntax, accessing data[10] is still incorrect (You can only access data[0] to data[9] …

  5. java - Make copy of an array - Stack Overflow

    Java Array Copy Methods Object.clone (): Object class provides clone () method and since array in java is also an Object, you can use this method to achieve full array copy.

  6. How to create correct JSONArray in Java using JSONObject

    In java 6 org.json.JSONArray contains the put method and in java 7 javax.json contains the add method. An example of this using the builder pattern in java 7 looks something like this:

  7. java - How to create an empty array? - Stack Overflow

    Read user input into a variable and use its value to initialize the array. myArray = new int[someVarSetEarlier] if you want to get the size in advance or use a List if you want the length of …

  8. java - How can I create an Array of ArrayLists? - Stack Overflow

    I am wanting to create an array of arraylist like below: ArrayList<Individual> [] group = new ArrayList<Individual> () [4]; But it's not compiling. How can I do this?

  9. How to make an array of arrays in Java - Stack Overflow

    @Terence: It does the same as the first: It creates an array of string array references, initialized to the values array1, array2, array3, array4 and array5 - each of which is in itself a string array reference.

  10. Syntax for creating a two-dimensional array in Java

    If you want to store n elements then the array index starts from zero and ends at n-1. Another way of creating a two dimensional array is by declaring the array first and then allotting memory for it by …