上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 90 下一页
摘要: 1. display 查看的变量的值会在每一次调试步骤暂停后都会显示出该变量的值,如果 display 了多次,它就会显示多个变量的值 2. print 显示的变量的值只会显示一次,当前的值。 3. 取消display显示的值需要使用 undisplay 命令; 4. 条件判断的断点中的判断条件,不 阅读全文
posted @ 2022-06-02 16:55 王清河 阅读(135) 评论(0) 推荐(0) 编辑
摘要: 一、断点相关 1. breakInfo:根据一定的条件暂停程序的运行 命令 作用 break 下一个指令处设置断点 break [file]:function 在 file 文件的 function 函数入口设置断点 break [file]:line 在 file 文件的第 line 行设置断点 阅读全文
posted @ 2022-06-02 14:19 王清河 阅读(214) 评论(0) 推荐(0) 编辑
摘要: 1. 获取 xlsx 文件的 sheet 数量 sheet1 = wb.sheetnames print("sheet : ", len(sheet1)) 阅读全文
posted @ 2022-04-03 16:12 王清河 阅读(535) 评论(0) 推荐(0) 编辑
摘要: stash 相关 查看 stash 内容: git stash show -p stash@{index} 删除某一个stash 内容 git stash drop stash@{index} 如果 git stash list 有多条记录,并且你想 pop 第 2 个 stash: git sta 阅读全文
posted @ 2022-03-01 14:52 王清河 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 使用组合的方式实现tuple的功能 #include<iostream> using namespace std; template<typename... Values> class tup; template<> class tup<>{}; // to realize function of 阅读全文
posted @ 2022-02-16 21:32 王清河 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 利用递归继承的方式实现tuple #include<iostream> using namespace std; template<typename... Values> class tuples; template<> class tuples<>{}; template<typename Hea 阅读全文
posted @ 2022-02-13 15:23 王清河 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 如果最后一个元素的处理方式不同于前面的,可以使用以下递归调用 #include<iostream> #include<tuple> #include<bitset> using namespace std; template <int IDX, int MAX, typename... Args> 阅读全文
posted @ 2022-02-13 12:38 王清河 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 循环调用的 max #include<iostream> using namespace std; int maximum(int n) { return n; } template <typename... Args> int maximum(int n, Args... args) { retu 阅读全文
posted @ 2022-02-13 11:51 王清河 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 迭代器的递归调用实现max功能,max函数接受任意参数 #include<iostream> using namespace std; struct _Iter_less_iter { template<typename _Iterator1 , typename _Iterator2> bool 阅读全文
posted @ 2022-02-13 11:45 王清河 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 重写 print 函数 #include<iostream> using namespace std; void printfX(const char *s) { while (*s) { if (*s == '%' && *(++s) != '%') throw "invalid format s 阅读全文
posted @ 2022-01-28 22:24 王清河 阅读(36) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 90 下一页