About 50 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. Array increment positioning with respect to indexer in C - array [i ...

    Sep 29, 2011 · An illustration. Suppose that array contains three integers, 0, 1, 2, and that i is equal to 1. array[i]++ changes array[1] to 2, evaluates to 1 and leaves i equal to 1. array[i++] does not modify …

  3. How to create an array containing 1...N - Stack Overflow

    Why go through the trouble of Array.apply(null, {length: N}) instead of just Array(N)? After all, both expressions would result an an N -element array of undefined elements. The difference is that in the …

  4. How to loop through the items of an array in JavaScript?

    There are plenty of applications for both approaches; it just depends on what you're using the array for. If you iterate over an array with for.. of, the body of the loop is executed length times, and the loop …

  5. What’s the difference between “new Array()” and “[]” (empty square ...

    Another difference is that when using new Array() you're able to set the size of the array, which affects the stack size. This can be useful if you're getting stack overflows (Performance of Array.push vs …

  6. How can I initialize all members of an array to the same value?

    How would you use memset to initialize a int array to some value larger than 255? memset only works if the array is byte sized.

  7. What does `array[^1]` mean in C# compiler? - Stack Overflow

    Oct 26, 2020 · How does index of ^1 returns the last item in an array? What does ^1 mean in C# compiler? Does it have performance benefit vs numbers[numbers.Count()-1]?

  8. Which comes first in a 2D array, rows or columns? - Stack Overflow

    Jul 25, 2012 · When creating a 2D array, how does one remember whether rows or columns are specified first?

  9. Loop (for each) over an array in JavaScript - Stack Overflow

    Feb 17, 2012 · How can I loop through all the entries in an array using JavaScript?

  10. How can I insert an item into an array at a specific index?

    Feb 25, 2009 · I am looking for a JavaScript array insert method, in the style of: arr.insert(index, item) It should preferably be in jQuery, but any JavaScript implementation will do at this point.