您的位置:首页 > 其它

string头文件与cstring头文件

2015-03-19 23:41 246 查看
首先说string的头文件

1、<string>

包装了std的C++头文件

2、<string.h>

旧的C头文件

3、<cstring.h>

旧C头文件的std版本,切记,这不是cstring的头文件

详见effective c++ 的第49条

再说cstring的头文件

注:VC9编译环境下

1、<atlstr.h>

非MFC版本,控制台程序就用这个

<afx.h>、<afxcoll.h>都可以。//要在项目->属性->常规里设置为使用MFC(动/静).

2、<afxstr.h>// only be used in MFC projects.

MFC版本,需要链接MFC的dll或静态库。网上很多人说要包含<afx.h>,<afx.h>包含的东西就比较多了CObject及其派生类,还有文件类、时间类、异常类、字符串类等等(700多行的位置包含了afxstr.h),如果仅仅需要cstring的话,包含<afxstr.h>就够了。

<afx.h>中的预处理

#ifdef _DLL

#ifndef _AFXDLL

#error Building MFC application with /MD[d] (CRT dll version) requires MFC shared dll version. Please #define _AFXDLL or do not use /MD[d]

#endif

#endif

<afxstr.h>中的预处理

#ifndef _AFX

#error afxstr.h can only be used in MFC projects. Use atlstr.h

#endif

注意上面的#error,大意就是这个头文件是在MFC工程里用的。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: