'this' refers to an instance, not accessible in static context.
Static methods belong to the class itself, not any object instance, so they can't use 'this'. This is a common pitfall for beginners who might try to access instance fields from static methods, like trying to update a Store's name across all instances.