摘要: 关于 更多使用细节(grammar和book),请参考 官网 1.上传代码 1.1 创建自己的远程Repository, github或者gitee 1.2 创建本地git仓库 $ git init Note:此指令本地源码根目录执行,执行成功后,会在当前目录生成一个名为“.git”的目录。所有对本 阅读全文
posted @ 2020-09-22 17:59 mohist 阅读(271) 评论(0) 推荐(0) 编辑
摘要: 1.关于 还在到处找 errno对应的含义? 自己动手,很方便可找到其明确的含义 2. 动手 2.1 创建 c++源文件,输入下面的代码: #pragma once #include <iostream> #include <fstream> #include <errno.h> #include 阅读全文
posted @ 2020-09-22 15:50 mohist 阅读(2276) 评论(0) 推荐(0) 编辑
摘要: 1.关于 我知道的,C20中引入了相当方便的字符串格式化,有兴趣的朋友,可以看下**fmt**库,截至目前,它实现了c20中引入的字符串格式化绝大部分功能。 2.format 既然c++11中没有方便的函数可以实现字符串格式化,那我们就自己写个c++版本的字符串格式化函数,上代码 std::stri 阅读全文
posted @ 2020-09-22 14:03 mohist 阅读(12604) 评论(0) 推荐(0) 编辑
摘要: 1. 没有定义的符号 这类的错误, 解决办法:A. 添加对应的头文件(源文件), B.前置声明 1.1 错误描述: error: variable has incomplete type 'class XXX ' error: 'helper' is not a class, namespace, 阅读全文
posted @ 2020-09-22 12:55 mohist 阅读(1887) 评论(0) 推荐(0) 编辑