Static members (methods and variables) belong to the class itself, not to instances of the class. They can be called using the class name directly without creating any object. This is why static methods are often used for utility functions that don't require object state.