将类型参数传递给 Eiffel 方法

发布于 2024-09-14 04:09:47 字数 373 浏览 2 评论 0原文

我想在 Eiffel 中编写一个强制转换方法,它将“要强制转换的类型”作为类型参数。有没有办法将类型传递到 Eiffel 中的方法中。

我能想到的唯一选择是为转换创建一个新类。比如:

class
   CAST [G, H]

feature

   cast (in: LIST [G]): LIST [H]
      do
         -- cast code here
      end

在埃菲尔铁塔中有没有更好的方法来做到这一点。在 C# 中,我可以指定方法采用与类类型参数分开的类型参数。 Eiffel有类似的功能吗?

我正在使用 EiffelStudio 6.6.8.3873 GPL。

谢谢。

I would like to write a cast method in Eiffel which takes 'the type to cast to' as a type parameter. Is there a way to pass a type into a method in Eiffel.

The only alternative I can think of is to create a new class for the conversion. Something like:

class
   CAST [G, H]

feature

   cast (in: LIST [G]): LIST [H]
      do
         -- cast code here
      end

Is there a better way to do this in Eiffel. In C# I can specify that a method takes type parameters separate from the class type parameters. Is there a similar feature in Eiffel?

I am using EiffelStudio 6.6.8.3873 GPL.

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

阳光下的泡沫是彩色的 2024-09-21 04:09:47

不可能有泛型方法,其中返回类型由 Eiffel 中传递的参数确定。对不起。
我遇到了同样的问题。您将返回一个公共超类,并使用赋值尝试获取对具有正确类型的返回对象的引用。

It's not possible to have generic methods, where the return type is determined by a passed parameter in Eiffel. Sorry.
I ran into the same issue. You will have return a common superclass and use an assignment attempts to get a reference to the returned object with the right type.

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