DEV Community

Pavitra Aravind
Pavitra Aravind

Posted on

What is static and Non static method in java?

Static variable is like a global variable and is available to all methods. Non static variable is like a local variable and they can be accessed through only instance of a class.

Top comments (0)