Static Methods
In this lesson, we will discuss static methods.
We'll cover the following...
Introduction to static methods
The keyword static
is a useful tool in Java. It basically means that a static method is one that can be called without any object instance. There are a few key points to remember with static methods.
-
These methods ...