-
what error in this programe
2. Identify the problem within this snippet of Java/C# code. (This is not a trick question, there is a potential real problem in using this code)
class Singleton{
public static Singleton Instance() {
if (_instance == null)
_instance = new Singleton();
return _instance;
}
protected Singleton() {}
private static Singleton _instance = null;
}
-
noooooooo erroooooooooooorrrrrrrrrr and nobudy can find
-
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
Bookmarks