STL(Standard Templates Library) 中包含六大组件,标准程序库是ANSI/ISO C++ 标准的一部分,包含有容器、迭代器
算法、仿函数、迭代适配器、空间配置器(对象的创建与销毁 内存的获取与释放)
ANSI-C标准制定(X3J16 C++标准制定1990)
ANSI/ISO C++
例子:
功能:将CString 转换成 String
MFC库(Microsoft Foundation Classes) 以C++类的形式封装了Windows API,最重要的是对win32 API的封装
- std::ostringstream oss;
- oss << CString;
- (oss.str().c_str());
- CString fea;
- std::ofstream file_(fea.GetString);
C++矩阵
代码
- //c++矩阵
- typedef std::vector<String> TxRow;
- typedef std::vector<TxRow> TxMatrix;
- TxMatrix attriValues;
- //i列j行
- attriValues.at(i).at(j);
未完待续。。。