12 2023 档案
摘要:#include <iostream> using namespace std; int main(){ // const 指针 int num = 1; int another = 2; // 这个指针指向的内容,不能透过这个指针来修改 // 可以理解为const int*, const int
阅读全文
摘要:Linux常用工具 grep 文本过滤 sed steam editor 文本编辑工具 awk 格式化文本 Ⅰ.grep grep (global regular expression) 命令用于查找文件里符合条件的字符串或正则表达式。 命令组成 grep [options] pattern [fi
阅读全文