...

/

Static Methods

Static Methods

In this lesson, we will discuss static methods.

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 ...