摘要:
判断两个类型的关系 #include <iostream> #include <type_traits> using std::cout; using std::endl; // is_same is used to judge two data types same or not during c 阅读全文
摘要:
编辑操作 i 在光标前插入 I 在行首插入 a 在光标后插入 A 在行尾插入 o 在当前光标下面多一空行插入 O 在当前光标上面多一空行插入 ciw 删除当前光标所在单词并插入 ci( 删除小括号内的内容并插入 ci[和ci{同样适用 u 撤销 在插入模式下按ctrl+w可以删除前面一个单词(同一种 阅读全文