- Errror description
MFC dll中的界面在Debug时调用UpdateData()函数,会判断窗口的运行环境是否跨线程,如果创建窗口的线程与调用该函数的线程不是同一个,就会触发CWnd的AssertVaild()函数中断.提示:
it is likely that you have passed a C++ object from one thread to another and have used that object in a way that was not intended.把一个C++对象从一个线程传到另一个线程,使用对象的方式不正确(与代码的原本设计相悖)
1 | void CWnd::AssertValid() const |
Solution
1.在窗口或者控件类重载 CWnd::AssertValid() 函数,写个空函数屏蔽原函数,不推荐使用.
1
2
3
4
5
6class CExampleDialog: public CDialog{
public:
#ifdef _DEBUG
virtual void AssertValid() const {};
#endif
}只需要在Debug时重载,在release时不会出错,因为在CWnd中这个函数也是在Debug才生效
1
2
3
4
5
6
7
8
9
10
void CWnd::AssertValid() const
{
//....
}
void CWnd::Dump(CDumpContext& dc) const
{
//....
}2.这个错误主要是跨线程使用窗口的一些资源导致,在UpdateData()或其他资源使用前调用
AFX_MANAGE_STATE(AfxGetStaticModuleState());
将状态切换.例如有如下函数需要在模块外调用且需要使用窗口/控件资源,
1 | bool ExampleFunc() |