Tuesday, 28 July 2015

SingleTon Design Pattern


public class Runtime
{

    public static Runtime getRuntime()
    {
        return currentRuntime;
    }


    private Runtime()
    {
    }

    private static Runtime currentRuntime = new Runtime();

}

No comments:

Post a Comment