摘要: #includeusing namespace std;void useStatic(){ static int x = 10; cout << "useStatic x: " << x << endl; x++; cout << "useStatic x: " << x <... 阅读全文
posted @ 2015-06-28 14:44 ROTBLATT 阅读(106) 评论(0) 推荐(0) 编辑