摘要: 1、找不到标示符:函数定义在使用该函数之后。 阅读全文
posted @ 2012-11-28 22:57 songtzu 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 如果在MFC工程中#include <windows.h>,那么会有以下编译错误(因为afxwin.h文件中包含了afx.h,afx.h文件中包含了afxver_.h,afxver_.h中包含了afxv_w32.h,而afxv_w32.h中包含了windows.h,请看以下分析): compile error: c:\program files\microsoft visual studio\vc98\mfc\include\afxv_w32.h(14) : fatal error C1189: #error : WINDOWS.H already include... 阅读全文
posted @ 2012-11-28 22:40 songtzu 阅读(669) 评论(0) 推荐(0) 编辑
摘要: CString,int,string,char*之间的转换string 转 CStringCString.format(”%s”, string.c_str());char 转 CStringCString.format(”%s”, char*);char 转 stringstring s(char *);string s;char *m="aasf";s = string(m);cout<<s<<endl;//输出aasfstring 转 char *char *p = string.c_str();constchar* c;string s=&q 阅读全文
posted @ 2012-11-28 22:14 songtzu 阅读(381) 评论(0) 推荐(0) 编辑