上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 30 下一页
摘要: 一、常量表达式 1、概念 (1)指值不会改变,在编译过程中就能得到计算结果的表达式; (2)编译器会在编译阶段将常量替换为对应的值; 2、判别 (1)字面值属于常量表达式 (2)用常量表达式初始化的const对象也是常量表达式 (3)是不是常量表达式由数据类型与初始值决定 const int max 阅读全文
posted @ 2020-08-20 14:59 kuaqi 阅读(288) 评论(0) 推荐(0) 编辑
摘要: 1、C/C++ 中关于以下三种定义: const char *ptr; 不可以通过该指针改变指向内容;可以指向别的内容; char const *ptr; 同上; char* const ptr; 指针指向固定;指向内容可以改变; const char* const ptr; 二、const变量相互 阅读全文
posted @ 2020-08-20 13:53 kuaqi 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 1、比较代码(https://blog.csdn.net/libaoshan55/article/details/77337878) 1 int main() { 2 cout << "Test vector and list time" << endl; 3 int N = 10000; 4 in 阅读全文
posted @ 2020-08-05 17:43 kuaqi 阅读(1412) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-08-01 11:49 kuaqi 阅读(0) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_27610647/article/details/100055786 权限问题: 解决方案:ctrl+d(退出当前用户) 第一次使用ctrl+d退出root用户,回到user1用户;第二次使用ctrl+d退出user1用户,此时会返回到root用户( 阅读全文
posted @ 2020-07-22 23:50 kuaqi 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 1、基本函数,不止是内部函数 io.open(): some_file=io.open('somefile.txt','w+') .close(): .flush():刷新缓存,好像有时没用? .read(n):读取字符个数 .readline():读取一行字符:也可以指定字符个数 .readlin 阅读全文
posted @ 2020-06-27 17:10 kuaqi 阅读(150) 评论(0) 推荐(0) 编辑
摘要: type(x) 阅读全文
posted @ 2020-06-27 16:19 kuaqi 阅读(192) 评论(0) 推荐(0) 编辑
摘要: os.getcwd() #用以获取当前的工作目录 os.chdir(path) #更改当前的工作目录 阅读全文
posted @ 2020-06-27 14:40 kuaqi 阅读(130) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/wyf2017/article/details/78824998 1、oracle下:select table_name from all_tables; 2、MySQL下:select table_name from information_schema 阅读全文
posted @ 2020-05-30 15:51 kuaqi 阅读(658) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/tswc_byy/article/details/81661065#%E5%BB%BA%E7%AB%8B%E6%95%B0%E6%8D%AE%E5%BA%93%EF%BC%9A 1、创建数据库 use master --打开master数据库,一般的创建语 阅读全文
posted @ 2020-05-29 14:03 kuaqi 阅读(1721) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 30 下一页