Getter methods provide controlled access to class fields.
Getter methods allow external classes to read private fields without direct access, maintaining encapsulation. For example, a getPrice method in a Product class lets other classes retrieve the price without exposing the field itself.