About 50 results
Open links in new tab
  1. 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.

  2. ArrayList (Java Platform SE 8 ) - Oracle Help Center

    Resizable-array implementation of the List interface. Implements all optional list operations, and permits all elements, including null. In addition to implementing the List interface, this class provides methods …

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

  4. Arrays (Java SE 17 & JDK 17) - Oracle

    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 …

  5. The for Statement (The Java™ Tutorials > Learning the Java ... - Oracle

    The for statement provides a compact way to iterate over a range of values. Programmers often refer to it as the "for loop" because of the way in which it repeatedly loops until a particular condition is satisfied.

  6. ArrayList (Java SE 25 & JDK 25) - docs.oracle.com

    Resizable-array implementation of the List interface. Implements all optional list operations, and permits all elements, including null. In addition to implementing the List interface, this class provides methods …

  7. Lesson: Language Basics (The Java™ Tutorials - Oracle

    This section discusses this relationship, plus variable naming rules and conventions, basic data types (primitive types, character strings, and arrays), default values, and literals.

  8. List (Java Platform SE 8 ) - Oracle Help Center

    Lists (like Java arrays) are zero based. Note that these operations may execute in time proportional to the index value for some implementations (the LinkedList class, for example).

  9. Stream (Java Platform SE 8 ) - Oracle Help Center

    Most streams are backed by collections, arrays, or generating functions, which require no special resource management. (If a stream does require closing, it can be declared as a resource in a try …

  10. String (Java Platform SE 8 ) - Oracle Help Center

    The Java language provides special support for the string concatenation operator ( + ), and for conversion of other objects to strings. String concatenation is implemented through the StringBuilder …