摘要: 一些基础就可以略过了,看书不能太呆板。如果把一本书看完了,剩下的就是在实际项目中进行整合,训练,然后整理成笔记。每天敲点程序,记点笔记。变量作用域代码:#include <iostream>#include <string>#include <conio.h>std::string s1 = "hello"; //全局int main(){ std::string s2 = "world"; //局部 std::cout<<s1<<" "<<s2<<s 阅读全文
posted @ 2013-04-11 17:41 TBHacker 阅读(319) 评论(0) 推荐(0) 编辑