...

/

Indexed Access Operator and Augmented Assignments

Indexed Access Operator and Augmented Assignments

Learn how to access elements in collections using [] brackets and get methods, and explore augmented assignments for modifying variables and collections.

The indexed access operator

In programming, there are two popular conventions for getting or setting elements in collections.

  • The first uses [] brackets

  • The second uses the get and set methods

In Java, we use the first convention for arrays and the ...