单例模式

This commit is contained in:
geekymv 2019-06-05 16:46:36 +08:00
parent c9dad631df
commit 27283e75c3

View File

@ -26,6 +26,8 @@ public class AsyncManager
/**
* 单例模式
*/
private AsyncManager(){}
private static AsyncManager me = new AsyncManager();
public static AsyncManager me()