facebook twitter hatena line email

Flutter/dart/singleton

提供: 初心者エンジニアの簡易メモ
2019年12月2日 (月) 22:25時点におけるAdmin (トーク | 投稿記録)による版

移動: 案内検索
class SingletonHoge {
  String name = "";
  static final SingletonHoge _singleton = SingletonHoge._internal();
  factory SingletonHoge() {
    return _singleton;
  }
  SingletonHoge._internal() {
    // init
  }
}

SingletonHoge hoge = SingletonHoge();
print (hoge.name); // ""
hoge.name = "taro";
print (hoge.name); // "taro"

https://stackoverflow.com/questions/12649573/how-do-you-build-a-singleton-in-dart