static meaning in java language
Answer (1)
Static is a keywordwhich is when associated with a method, makes it a class related method. The method is static so that JVM can invoke it without instantiating the class. This also saves the unnecessary wastage of memory which would have been used by the object declared only for calling the method by the JVM.
Comments (0)
Related Questions
applets meaning in java language
55 Views
meaning of void in java language
67 Views
method overloading in java language
37 Views




