What can we do with the static keyword in java?
Reading Time: 3 minutes As we all know that we can make static variable, method or class. We know what it can do. If we make a variable static then that variable scope is present for the entire run of the program. Its memory is shared by all the object of the class in which it is declared. We make the method so that it can not be inherited. Continue Reading