GetRef 来捕获方法?
我刚刚发现了 VBScript 的 GetRef 函数,它获取对其参数命名的函数的引用。有没有办法以这种方式获取对方法的引用?我有一种预感,VBScript 不提供这样做所需的复杂绑定,但它肯定会很好。
I've just discovered VBScript's GetRef function, which gets a reference to the function named by its argument. Is there any way to get a reference to a method in this way? I have a hunch that VBScript doesn't offer the sophistication of binding needed to do so, but it would sure be nice.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,
GetRef
不支持类方法。No,
GetRef
doesn't support class methods.有一个解决方法,请参阅我的答案 这里
这里是完整的示例
There is a workaround for this, see my answer here
Here the full sample