gpt4 book ai didi

generics - Dart 2.7通用扩展

转载 作者:行者123 更新时间:2023-12-03 04:24:20 24 4
gpt4 key购买 nike

我面临将dart 1.25代码转换为2.7的问题。
我的问题是泛型扩展约束。

在较旧的dart 1.25版本中,未指定通用类型时将其理解为num。

void main() {
CustomType customType = new CustomType();// no T specified
}

class CustomType<T extends num> {
CustomType() {
print(T is num);//> why is this false ?
}
}

为什么不这样呢?

最佳答案

您使用了错误的运算符来比较类。使用:

  • ==比较2个类是否相等
  • is检查对象是否是类的实例。
  • void main() {
    CustomType customType = new CustomType();// no T specified
    }

    class CustomType<T extends num> {
    CustomType() {
    print(T); // num
    print(T == num); // true
    print(1 is num); // true
    }
    }

    关于generics - Dart 2.7通用扩展,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60781546/

    24 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com