This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public abstract class StringUtilities | |
{ | |
public static void stuff() | |
{ | |
// do stuff | |
} | |
} |
Now, some notes:
- nowhere was a subclass defined to implement the 'abstract methods' in StringUtilities.
- as a matter of fact, there were no 'abstract methods'.
- all other methods were defined 'static'
It seemed a weird way to defeat instantiation (badly, by the way, as a person could simply subclass the thing and instantiate that).
Proper defeating of instantiation is done by means of a private constructor.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class StringUtilities | |
{ | |
/** | |
* Defeat instantiation. | |
*/ | |
private StringUtilities() | |
{ | |
} | |
public static void stuff() | |
{ | |
// do stuff | |
} | |
} |
But, if what you need is a Singleton, perhaps it's better to just define a single ENUM.
Nobody could quite explain to me in which cases the first example would be a "Good Idea"™.
No comments:
Post a Comment