Directly, or using the 'this' keyword. Frame the concept in practical terms so you can explain it during interview discussion.
Within an instance method, you can access the object's fields directly by their names or use `this.fieldName` to refer explicitly to the current instance. For example, in a `Product` class, `this.price` refers to the instance's price field.
Additional Notes
How do you access instance fields in an instance method?