C++ Primer 读书笔记 - 第三章
摘要:
1. std::string size()函数返回值为string::size_type,用下标时,也用string::size_type作为index的类型#include <iostream>#include <cstdio>#include <string>using namespace std;int main(){ string s = "abc"; cout << s << endl; cin >> s; cout << s << endl; string line; 阅读全文
posted @ 2013-05-19 13:01 NULL00 阅读(395) 评论(0) 推荐(0) 编辑