忧心羽毛

文章
6
资源
0
加入时间
2年10月17天

单例模式与懒加载方式。

单例模式在C++类的设计模式中很普遍。定义#define ImplementInstance(cls)\public:\ static cls* cls::GetInstance()\ {\ static cls* m_pInstance = NULL; \ if (!m_pInstance)\ {\ m_pInstance = new_nothrow cls; ...

java测试复盘6(2019.9.8)

1、假定Base b = new Derived(); 调用执行b.methodOne()后,输出结果是什么? A*public class Base{public void methodOne(){System.out.print("A");methodTwo();}public void methodTwo(){System.out.print("B");}}pu...

win7蓝牙驱动安装失败解决方法

相信很多朋友在win7的开发之中,经常会出现安装蓝牙bluetooth 设备失败的情况吧。刚开始以为是TAP EXE工具没有抓到设备造成的,但是后来