Static Classes In Java

后端 未结 13 1532
慢半拍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条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-22 08:23

    Outer classes cannot be static, but nested/inner classes can be. That basically helps you to use the nested/inner class without creating an instance of the outer class.

提交回复
热议问题