Static Classes In Java

后端 未结 13 1506
慢半拍i
慢半拍i 2020-11-22 07:37

Is there anything like static class in java?

What is the meaning of such a class. Do all the methods of the static class need to be static

相关标签:
13条回答
  • 2020-11-22 08:36

    Java has static methods that are associated with classes (e.g. java.lang.Math has only static methods), but the class itself is not static.

    0 讨论(0)
提交回复
热议问题