About 252,000 results
Open links in new tab
  1. Arrays (Java Platform SE 8 ) - Oracle Help Center

    This class contains various methods for manipulating arrays (such as sorting and searching). This class also contains a static factory that allows arrays to be viewed as lists. The methods in this class all …

  2. Arrays (The Java™ Tutorials > Learning the Java Language - Oracle

    For your convenience, Java SE provides several methods for performing array manipulations (common tasks, such as copying, sorting and searching arrays) in the java.util.Arrays class. For instance, the …

  3. Java Array (With Examples) - Programiz

    In this tutorial, we will learn to work with Java arrays. We will learn to declare, initialize, and access array elements with the help of examples. An array is a collection of similar data types.

  4. Java Arrays - W3Schools

    Java Arrays Arrays are used to store multiple values in a single variable, instead of declaring separate variables for each value. To declare an array, define the variable type with square brackets [ ] :

  5. Arrays in Java - GeeksforGeeks

    Mar 13, 2026 · Java arrays can hold both primitive types (like int, char, boolean, etc.) and objects (like String, Integer, etc.) When we use arrays of primitive types, the elements are stored in contiguous …

  6. Arrays - Princeton University

    Apr 8, 2020 · Arrays in Java. Making an array in a Java program involves three distinct steps: Declare the array name. Create the array. Initialize the array values. We refer to an array element by putting …

  7. Array Data Structure - GeeksforGeeks

    Mar 3, 2026 · An array is a fundamental and linear data structure that stores items at contiguous locations. Note that in case of C/C++ and Java-Primitive-Arrays, actual elements are stored at …

  8. Java - Arrays - Online Tutorials Library

    The Arrays Class The java.util.Arrays class contains various static methods for sorting and searching arrays, comparing arrays, and filling array elements. These methods are overloaded for all primitive …

  9. Arrays (Java Platform SE 8 ) - Oracle

    クラス java.lang. Object から継承されたメソッド clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

  10. Java Arrays Reference - W3Schools

    The Java Arrays class (found in java.util), has methods that allow you to manipulate arrays.