boo 中的继承
如果 boo 语言与 c# 100% 兼容,我如何像两个 c# 类一样在 2 boo 文件中继承?
if boo language is 100% compatible with c#,how can i have inheritance in 2 boo file like two c# class?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Boo 是一种 CLR 语言,就像 C# 一样。假设引用已正确解析,继承就很简单:
有关详细信息,请参阅 http://docs.codehaus.org/display/BOO/Part+08+-+Classes
Boo is a CLR language just like C#. Assuming that references are properly resolved, inheritance is as simple as:
For more information, see http://docs.codehaus.org/display/BOO/Part+08+-+Classes