Update your skills here
Labels
Cloud
CMS
Collections
DesignPatterns
Groovy
Interview
Java
Linux
Maven
POC_On_Tools
Protocols
Servers
SQL
Telicom Domain
Threads
VM
WebServices
Showing posts with label
DesignPatterns
.
Show all posts
Showing posts with label
DesignPatterns
.
Show all posts
Tuesday, 28 July 2015
SingleTon Design Pattern
public class Runtime
{
public static Runtime getRuntime()
{
return currentRuntime;
}
private Runtime()
{
}
private static Runtime currentRuntime = new Runtime();
}
Older Posts
Home
Subscribe to:
Posts (Atom)