07 2019 档案
摘要:链接: https://blog.csdn.net/glc22/article/details/79501309
阅读全文
摘要:查看所有表名: select name from sqlite_master where type='table' order by name; 查看表的字段: PRAGMA table_info([tablename]); tablename 为实际的数据表名
阅读全文
摘要:1、vc6.0 不支持using namespace std vc6.0有sp6补丁,打过补丁后才支持。 2、C4786警告 解决方法: https://blog.csdn.net/liang_lq/article/details/6191996 3、警告: Compiler option 'Gen
阅读全文
摘要:1、设计原则 1、依赖倒置原则: 针对接口编程,而不是针对实现编程 2、合成复用原则: 优先使用对象组合,而不是类继承 参考链接: https://mp.weixin.qq.com/s/kYr0gdjtDDa52ESLUoCb1A
阅读全文