Search Results

2
votes

What is the best way to implement constants in Java ?

A good object oriented design should not need many publicly available constants. Most constants should be encapsulated in the class that needs them to do its job. …
2
votes

Which comes first - The Interface or the Class

I usually go with the second option. Write a class and extract interface later. Usually the reason for extracting an interface is the need for a second implementation of that interface (often as …