摘要: package com.bjsxt.base; class Sigleton{ private Sigleton(){}; private static Sigleton instance = new Sigleton(); public static Sigleton getInstance(){ return instance; } } p... 阅读全文
posted @ 2018-03-09 23:39 Alamps 阅读(186) 评论(0) 推荐(0) 编辑