S eda1a14b50ee24bcab19b62f40858e76 Enum (JavaScript)

Enumのようなもの。
再定義して変更できなくしてるのがうまいね〜

http://progress.from.tv/2009/04/28/javascriptでjavaのようなenumを定義するには?/
  var Piece = function() {}

  // インスタンスメソッドを定義
  Piece.prototype.getTurn = function() {
      switch(this) {
      case Piece.Black:
              return Piece.White;
      case Piece.White:
              return Piece.Black;
      }
      return null;
  }

  // 列挙型として再定義。
  Piece = {Black: new Piece(), White: new Piece()};

  console.log(Piece.Black.getTurn());
  console.log(Piece.Black.getTurn());
  console.log(new Piece());

もしかして

    他の人の「Enum (JavaScript)」

    S eda1a14b50ee24bcab19b62f40858e76

    無所属ソフトウェアエンジニア

    (1722words)

    最新

      最新エントリ

        関連ツイート