4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

DartのGenericsの判別方法

Last updated at Posted at 2020-01-16

generics で型を判別する時に、ちょっとハマったのでメモ
genericsな型(以下 T )をプロパティとして持ったクラスにintを渡し、その型をif文で判別しようとしたところハマってしまった
やったことは以下の通りである。


class GenericsModel<T> {
  final T type; // set or get される場合の型
  PrefKeyModel(this.type);
}

main() {
  final model = GenericsModel(int);
  if (model.type is int) {
    // Int! 
  } else {
    // Error! <- こっちが来る
  }
}

とするとErrorになってしまう
これはintが入っていたとしても T 型が設定されているためで is を使ってもtrueにはならない


class GenericsModel<T> {
  final T type; // set or get される場合の型
  GenericsModel(this.type);
}

main() {
  final model = GenericsModel(int);
  if (model.type == int) {
    // Int! <- こっちが来る
  } else {
    // Error! 
  }
}

こうやって判別するのが正解

4
3
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?