文件名称:cpp-delegates:天真的C ++中成员函数的委托实现
文件大小:874KB
文件格式:ZIP
更新时间:2024-04-28 01:43:31
C++
Gios C ++代表 c ++中成员函数的委托的幼稚单头实现。 受虚幻引擎4委托系统的影响。 对于希望这样做的任何人,我建议这两篇文章: 用法: 若要使用,请将GiosDelegates.dll添加到项目的include目录中,然后添加include "Delegate.h" 。 只能将成员函数添加到Delegate (尚不支持全局函数...吗?)。 您可以将任意数量的任何类型的函数绑定到相同的Delegate ,只要它们的签名相同即可。 无参数代表: class Foo { public: void DoFoo () { cout << " Foo! " << endl; } }; void main () { Delegate simpleDelegate; Foo* foo = new Foo (); s
【文件预览】:
cpp-delegates-main
----GiosDelegates()
--------GiosDelegates()
--------DelegateExample()
--------GiosDelegates.sln(2KB)
--------Debug()
--------x64()
----.gitignore(514B)
----README.md(2KB)