Styrow.dev
Question 112 of 247
Java Topic: General medium

What is static class?

Question

What is static class?

Answer

A class cannot be declared static. But a class can be said a static class if all the variables and methods of the class are static and the constructor is private. Making the constructor private will prevent the class to be instantiated. So the only possibility to access is using Class name only