如何访问ironruby中的基类属性(变量)?
我正在尝试使用 IronRuby 进行一些 XNA 开发,但在泛型(加载)和访问一些基类属性(例如内容)方面遇到了困难。
有什么提示吗?
I'm trying to do some XNA development with IronRuby but are struggling with both generics (Load) and accessing some of the base-class properties such as Content.
Any hints?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
关于泛型 - 如果您想创建泛型对象,请使用方括号来定义泛型类型。 例如:
对于基类属性,Ruby 中没有“base”关键字,因此您可以使用“self”或直接调用方法或属性。 您还可以尝试修改属性名称(例如,HelloWorld 被修改为 hello_world)。 我建议为了访问 Content 属性,只需这样称呼它:
希望它有帮助,
谢伊。
Regarding Generics - if you want to create a generic object, use square brackets in order to define the generic type. For example:
Regarding base class properties, there is no "base" keyword in Ruby so you can use "self" or just call the method or property directly. You might also try to mangle the property name (for instance, HelloWorld is mangled to hello_world). I suggest that in order to access the Content propery, just call it this way:
Hope it helps,
Shay.