摘要:
《设计模式》定义一个单例类,使用类的私有静态指针变量指向类的唯一实例,并用一个公有的静态方法获取该实例。 关键字:指向自己的静态指针私有,创建对象并赋值私有静态指针函数->公有, 构造函数私有--只有自己能创建 static pthread_mutex_t _instance_lock; class 阅读全文
摘要:
《设计模式》定义一个单例类,使用类的私有静态指针变量指向类的唯一实例,并用一个公有的静态方法获取该实例。 关键字:指向自己的静态指针私有,创建对象并赋值私有静态指针函数->公有, 构造函数私有--只有自己能创建 static pthread_mutex_t _instance_lock; class 阅读全文
摘要:
Use pip install openpyxl first Every simple example import openpyxl # 打开excel文件,获取工作簿对象 wb = openpyxl.load_workbook('OP_SVC_INST_SampleUT23.xlsx') # 从 阅读全文
摘要:
One procedure do well in SQL developer but error during exceute it under sqlplus command line: Remember add below in first line and last line: prompt 阅读全文
摘要:
We know that there is "commit" in oracle to submit all data in the session and used very common. But there is "/" in sql command line that is special 阅读全文
|