Signals and slots implementation in Delphi?

2020-03-24 09:08发布

Does an implementation of the signals and slots mechanism for event dispatching exist for Delphi?

3条回答
啃猪蹄的小仙女
2楼-- · 2020-03-24 09:39

I spent some time a while ago getting Allen Bauer's Multicast Event code working. It has some limitations, but works well in my code. You can see the code here.

Of course, it only works in Delphi > 2009

查看更多
孤傲高冷的网名
3楼-- · 2020-03-24 09:49

Whilst you can implement multi-cast events yourself, they are not directly supported in the the language unlike in C# and VB.NET. Lack of language support makes any attempt to emulate multi-cast events rather clumsy.

Interestingly, C++ lacks support for signals and slots and the Qt solution involves an extra process in the compilation tool chain, the Meta Object Compiler.

查看更多
爱情/是我丢掉的垃圾
4楼-- · 2020-03-24 09:52

Search for multicast events. There are a few implementations out there, e.g.

Some of them need generics, so are D>2009 only.

查看更多
登录 后发表回答