08 2022 档案
摘要:参考 std::string #include<iostream> #include<string> using namespace std; int main() { string str; string base = "The quick brown fox jumps over a lazy
阅读全文
摘要:https://www.cnblogs.com/poissonnotes/p/8444886.html 命名 目录命名 名词短语 -- 小蛇型:全小写字母 + 下划线 名字空间 名次短语 -- 小蛇型:全小写字母 + 下划线 文件命名 名词短语 -- 大驼峰:每个首字母大写 + 继承类名 类和类型
阅读全文
摘要:C++中,如果进行二进制转换 #include<iostream> #include<bitset> using namespace std; #define unsigned int uint32_t void transferRadix(int n){ cout << "hex: " << st
阅读全文