Find a program like this.
public class Manager
{
// construct global manager object on start
public static final Manager INSTANCE = new Manager();
...
}
What is this usage term?
Where can I read the detail for this usage?
thx
u****s 发帖数: 2186
2
singleton
【在 i**p 的大作中提到】 : Find a program like this. : public class Manager : { : // construct global manager object on start : public static final Manager INSTANCE = new Manager(); : ... : } : What is this usage term? : Where can I read the detail for this usage? : thx