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. python - What does [:] mean? - Stack Overflow

    I'm analyzing some Python code and I don't know what pop = population[:] means. Is it something like array lists in Java or like a bi-dimensional array?

  5. 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?

  6. 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 …

  7. 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.

  8. Why is conditional processing of a sorted array faster than of an ...

    Why is processing an unsorted array the same speed as processing a sorted array with modern x86-64 clang? - modern C++ compilers auto-vectorize the loop, especially when SSE4.1 or AVX2 is …

  9. 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]?

  10. 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 …