WinCE中创建线程
我在 MFC 中将以下代码编写为 win32 应用程序:
CZoneThread* pThread = new CZoneThread( sZoneInfo ); pThread->CreateThread();
这里,CZoneThread是另一个类。
这段代码在 WinCE 中也能正常工作吗?
I have this code written in MFC as a win32 application:
CZoneThread* pThread = new CZoneThread( sZoneInfo );
pThread->CreateThread();
Here, CZoneThread is another class.
Will this code work correctly in WinCE as well?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,你总是可以尝试一下——这将是你自己测试的一种方法。但是,是的,这在 CE 下工作得很好(无论如何,也和 MFC 一样工作得很好)。
Well you could always try it - that would be a way to test it for yourself. But yes, that will work fine under CE (well as fine as MFC ever works anyway).