是否可以在 ActionScript 中使用 Haxe 参数化类型?

发布于 2024-11-27 23:20:48 字数 430 浏览 2 评论 0 原文

有什么方法可以

class GenericTest<T> {

   public function putSomething(value:T) {
      ...
   }

   public function getSomething():T {
      ...
   }

}

在 ActionScript 中使用这样的参数化 Haxe 类型吗?

var o:GenericTest.<int> = new GenericTest.<int>();

我尝试构建 .swc 并包含它,但类型参数变成了普通对象。如果存在对 Vector 的支持,似乎必须有一种方法可以欺骗 flash 使用自定义泛型类型。或者这是播放器内置的特殊情况?

Is there any way I can use a parameterized Haxe type like this:

class GenericTest<T> {

   public function putSomething(value:T) {
      ...
   }

   public function getSomething():T {
      ...
   }

}

in ActionScript?

var o:GenericTest.<int> = new GenericTest.<int>();

I tried building to a .swc and including that but the type parameters turn to plain Objects. It seems like there must be a way to trick flash into using custom generic types if the support exists for Vector. Or is that a special case built into the player?

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

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

发布评论

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

评论(1

最舍不得你 2024-12-04 23:20:48

没关系,根据这两篇文章,如果不修改编译器,这看起来是不可能的:

这很令人失望,但我不能说我没有预料到。

Nevermind, it looks impossible without compiler modifications according to these two posts:

That's disappointing but I can't say I didn't expect it.

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