如何访问ironruby中的基类属性(变量)?

发布于 2024-07-30 14:45:20 字数 85 浏览 6 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

御弟哥哥 2024-08-06 14:45:20

关于泛型 - 如果您想创建泛型对象,请使用方括号来定义泛型类型。 例如:

list = System::Collections::Generic::List[System::String].new

对于基类属性,Ruby 中没有“base”关键字,因此您可以使用“self”或直接调用方法或属性。 您还可以尝试修改属性名称(例如,HelloWorld 被修改为 hello_world)。 我建议为了访问 Content 属性,只需这样称呼它:

self.content

希望它有帮助,
谢伊。

Regarding Generics - if you want to create a generic object, use square brackets in order to define the generic type. For example:

list = System::Collections::Generic::List[System::String].new

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:

self.content

Hope it helps,
Shay.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文