我用VC++2005,MessageBox函数的第一个参数直接用“”提示错误
1个回答
展开全部
注意区分 API 和MFC CWnd类的同名函数
int MessageBox(
HWND hWnd, // handle to owner window
LPCTSTR lpText, // text in message box
LPCTSTR lpCaption, // message box title
UINT uType // message box style
);
CWnd::MessageBox
int MessageBox( LPCTSTR lpszText, LPCTSTR lpszCaption = NULL, UINT nType = MB_OK );
在CWnd的派生内中直接写MessageBox 是调CWnd类继承过来的方法 想调用API 不但要用参数来区分 还要在MessageBox前
加 :: 代表全局API函数
int MessageBox(
HWND hWnd, // handle to owner window
LPCTSTR lpText, // text in message box
LPCTSTR lpCaption, // message box title
UINT uType // message box style
);
CWnd::MessageBox
int MessageBox( LPCTSTR lpszText, LPCTSTR lpszCaption = NULL, UINT nType = MB_OK );
在CWnd的派生内中直接写MessageBox 是调CWnd类继承过来的方法 想调用API 不但要用参数来区分 还要在MessageBox前
加 :: 代表全局API函数
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询