If we want to prevent instantiation of object in Java we can use several approaches and most obvious of them:
- abstract keyword
- private/protected constructor
Let's say class doesn't contain abstract methods and we use abstract keyword to prevent creation of the object. Is this approach incorrect(I mean not syntax correctness, but semantic )? Or it's better to use private constructor in such cases?
Thanks
UPD Class will be a base class for other, though it doesn't contain abstract methods. In my case it some "AbstractTestBase" which contains some common data and utility methods which can be used by some group of integration/unit tests.
abstractonly if you intend the class to be subclassed. If it's a non-instantiable utility class or similar: a private constructor that throws anAssertionError– Matt Whipple Jan 6 at 14:36throws java.lang.UnsupportedOperationException, so the intent is immediately obvious to the reader. But that's minutiae. – miku Jan 6 at 14:42abstractkeyword: that's the intended use. You shouldn't be using anything else since the constructorwillstill be called as part of the instantiation chain for child objects. – Matt Whipple Jan 6 at 14:43