摘要: https://blog.csdn.net/langkye/article/details/100829769 阅读全文
posted @ 2020-05-04 18:47 xuecl 阅读(1437) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2020-04-17 20:01 xuecl 阅读(297) 评论(0) 推荐(0)
摘要: https://www.runoob.com/w3cnote/python-func-decorators.html 阅读全文
posted @ 2020-04-15 10:27 xuecl 阅读(122) 评论(0) 推荐(0)
摘要: https://www.jianshu.com/p/ea4accd7afb4 阅读全文
posted @ 2020-04-12 18:00 xuecl 阅读(209) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/Sopp_Li/article/details/98891851 阅读全文
posted @ 2020-04-12 13:59 xuecl 阅读(2036) 评论(0) 推荐(0)
摘要: deepin系统-15.11进入etc/apt/目录中,备份sources.list文件(具体备份命令,请自行百度,LZ这里使用的是直接复制一个文件出来,更改名字)。执行命令,修改文件内容:sudo vim /etc/apt/sources.list删除内容,并添加以下内容: ## Generate 阅读全文
posted @ 2020-04-12 11:31 xuecl 阅读(1429) 评论(0) 推荐(0)
摘要: 转:https://www.runoob.com/cplusplus/cpp-class-access-modifiers.html 阅读全文
posted @ 2020-03-12 20:11 xuecl 阅读(262) 评论(0) 推荐(0)
摘要: 逻辑运算符 && 逻辑与(乘法) || 逻辑或(加法) !逻辑非(取反) 位运算符 & 与 | 或 ~ 非 ^ 异或(相同为0,相异为1) << 左移(左移n位,就是原数乘以2的n次方——十进制) >> 右移(右移n位,就是原数除以2的n次方——十进制) 阅读全文
posted @ 2020-03-12 16:34 xuecl 阅读(912) 评论(0) 推荐(0)
摘要: 存储类定义 C++ 程序中 变量/函数 的 范围(可见性)和 生命周期。这些说明符放置在它们所修饰的类型之前。下面列出 C++ 程序中可用的存储类: auto :声明变量并初始化时,根据右值来确定左值的类型 register :声明的变量存储在寄存器上,而不是内存上,不能使用“&”运算符(因为它没有 阅读全文
posted @ 2020-03-12 16:16 xuecl 阅读(216) 评论(0) 推荐(0)
摘要: desc 表名;show columns from 表名;describe 表名;show create table 表名; 阅读全文
posted @ 2020-03-10 11:08 xuecl 阅读(1458) 评论(0) 推荐(0)