Posted on 2010-10-01 13:05
傅先生 阅读(405)
评论(0) 编辑 收藏 引用 所属分类:
C++开发常见错误
//////////字符串
char *
---------------------
会程序错误
/////////字符串
用CString 放置数值--- 网址,内容 过长.容易引起----------程序错误
char *test =new char[MAX_VALUE];
---------------------------------------------------------
/////////控件
当 IDC_EDIT_PLACE1 被删除---依旧被调用则..
GetDlgItem(IDC_EDIT_PLACE1)-> EnableWindow(FALSE);
-------------------------
/////////////////////////////////////////------------extern CString test1,test2; //误解
/////////////-------------extern CString test1; //正解
/////////////-------------extern CString test1;
////////extern 不能用在new ========extern char *test=new char[256]; //误解
//////////////////////////========extern char *test[256]; //误解
//--------extern char test[256]; //正解
//////////控件,
UpdateData(true);
对应处理数值,对应函数--- 出错