← Back

Arrays Introduction

Fixed-size contiguous collection indexed from 0.

arraysbasicsUpdated 2025-09-01

Properties

  • Random O(1) access by index
  • Fixed length after creation

Example (Java)

  • int[] a = {1,2,3};
  • System.out.println(a[0]);