摘要:
On Windows, paths containing white characters must be wrapped with quotation marks. 就是要用引号把路径名括起来 like this " " 而在c语言中 " 需要使用转义字符序列 like this \" \" 阅读全文
摘要:
2.5.2节练习 2.35 #include<iostream> #include"Sales_item.h" int main() { const int i = 42; auto j = i; const auto& k = i; auto* p = &i; const auto j2 = i, 阅读全文