读书的时候看过一下《Essential C++》,当时很多还不懂,今天回味了一下。第一章就主张使用vector和string 来取代语言内建的数组和C-style字符串了。看来实现一种功能会有很多种方法:)使用C++就用效率高的方法。
第一章例子里,
#include<iostream>
#include<string> //头文件需要引用string类,否则不能使用string
using namespace std; //如果不用namespace,在Visual C++ 6.0中编译将会有错误
继续回味。。。
posted on 2006-12-03 22:18
品味C++,品味symbian 阅读(263)
评论(0) 编辑 收藏 引用 所属分类:
C++