开发平台(Platform): (Ex: VC++, GCC, Linux, ...)
VC2008
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
MFC
问题(Question):
在multithread下,使用delegate的方法让thread之间沟通
程式码(Code):(请善用置底文网页, 记得排版)
请看底下推文的连结
补充说明(Supplement):
各位好,不好意思小弟我又上来请教各位先进了。
自从换工作学着写MFC后,最近开始学着写multithread。
一开始写的时候不知道危险,在MainThread建立新的CWinThread时,
直接把MainThread的物件位址丢给CWinThread物件接,
虽然要存取MainThread物件时都有先做Lock/Unlock,
但找了相关资料觉得这写法太危险了,
学习采用Delegate的写法。
搜寻版上的文章后,看到cjcat2266版友分享的文章
http://allenchou.net/2012/04/easy-c-delegates/
我将cjcat2266版友这网址的程式码,除了demo sample code以外,
copy到一个Delegate.h的档案。
程式码大纲如上面的网址所示。
结果Complier跟我说,建立struct时,没有对应的建构式。
struct ThreadParaStruct在还没有加入Delegate物件这一行
Delegate<void, int> fp_fun_in_struct;
之前,compiler是过的了的。
请问这边该怎么改呢?谢谢。