CoffeeScriptのプライベートメンバー?


84

CoffeeScriptで非静的なプライベートメンバーを作成する方法を知っている人はいますか?現在、私はこれを行っています。これは、アンダースコアで始まるパブリック変数を使用して、クラス外で使用してはならないことを明確にしています。

class Thing extends EventEmitter
  constructor: (@_name) ->

  getName: -> @_name

変数をクラスに入れると静的メンバーになりますが、どうすれば非静的にすることができますか?「ファンシー」にならずにそれも可能ですか?

回答:


20

「ファンシー」にならずにそれも可能ですか?

悲しいことに、あなたは空想でなければならないでしょう。

class Thing extends EventEmitter
  constructor: (name) ->
    @getName = -> name

「これは単なるJavaScriptです」ということを忘れないでください


1
...そして、JSで行うのと同じように行う必要があります。砂糖の後ろに隠れていると忘れがちです、ありがとう!
thejh 2011年

4
それは本当にプライベートですか?クラス外でもアクセスできます。a = Thing( 'a')の場合、a.getName()は値を返し、a.getName =-> 'b'が値を設定します。
アミール

4
@Amir:nameコンストラクタークロージャーの内部からのみ表示されます。この要点を見てください:gist.github.com/803810
thejh

13
また@getName = -> namegetName関数の継承の可能性を壊しているように見えることにも注意してください。
ケンダルホプキンス

12
この答えは間違っています。ここでgetNameは、はパブリックでありname、コンストラクター関数からのみアクセスできるため、オブジェクトに対して実際には「プライベート」ではありません。
tothemario 2013

203

クラスは単なる関数であるため、スコープを作成します。このスコープ内で定義されたすべてのものは、外部からは見えません。

class Foo
  # this will be our private method. it is invisible
  # outside of the current scope
  foo = -> "foo"

  # this will be our public method.
  # note that it is defined with ':' and not '='
  # '=' creates a *local* variable
  # : adds a property to the class prototype
  bar: -> foo()

c = new Foo

# this will return "foo"
c.bar()

# this will crash
c.foo

coffeescriptはこれを次のようにコンパイルします。

(function() {
  var Foo, c;

  Foo = (function() {
    var foo;

    function Foo() {}

    foo = function() {
      return "foo";
    };

    Foo.prototype.bar = function() {
      return foo();
    };

    return Foo;

  })();

  c = new Foo;

  c.bar();

  c.foo();

}).call(this);

9
これらのプライベート変数はサブクラスで使用できないことに注意してください。
Ceasar Bautista 2012

45
関数のインスタンスになるには、「private」メソッドをのようfoo.call(this)に呼び出す必要があることにも注意してくださいthis。これが、JavaScriptで古典的な継承をエミュレートしようとするのが面倒になる理由です。
Jon Wingfield

3
もう一つの欠点は..あなたは、ユニットテストのための「プライベート」メソッドへのアクセスを持っていないということです
NUC

16
@nucプライベートメソッドは、それらを呼び出すパブリックメソッドを介してテストされる実装の詳細です。つまり、プライベートメソッドはユニットテストされるべきではありません。プライベートメソッドがユニットテスト可能であると思われる場合は、おそらくパブリックメソッドである必要があります。だけでなく、良い説明のために、この記事を参照してくださいstackoverflow.com/questions/5750279/...
mkelley33

2
また、「パブリック」関数で使用される場所の上に「プライベート」変数を定義する必要があることにも注意してください。そうしないと、CoffeeScriptが混乱し、varそれらをシャドウイングする新しい内部宣言が作成されます。
Andrew Miner 2014

11

もっと素敵なものを見せたい

class Thing extends EventEmitter
  constructor: ( nm) ->
    _name = nm
    Object.defineProperty @, 'name',
      get: ->
        _name
      set: (val) ->
        _name = val
      enumerable: true
      configurable: true

今、あなたはすることができます

t = new Thing( 'Dropin')
#  members can be accessed like properties with the protection from getter/setter functions!
t.name = 'Dragout'  
console.log t.name
# no way to access the private member
console.log t._name

2

Vitalyの回答には1つの問題があります。それは、スコープに固有にする変数を定義できないことです。そのようにプライベート名を作成してから変更すると、クラスのインスタンスごとに名前の値が変更されます。その問題を解決する方法が1つあります

# create a function that will pretend to be our class 
MyClass = ->

    # this has created a new scope 
    # define our private varibles
    names = ['joe', 'jerry']

    # the names array will be different for every single instance of the class
    # so that solves our problem

    # define our REAL class
    class InnerMyClass 

        # test function 
        getNames: ->
            return names;

    # return new instance of our class 
    new InnerMyClass

使用しない限り、names配列に外部からアクセスすることは不可能ではありません getNames

これをテストする

test = new MyClass;

tempNames = test.getNames()

tempNames # is ['joe', 'jerry']

# add a new value 
tempNames.push 'john'

# now get the names again 
newNames = test.getNames();

# the value of newNames is now 
['joe', 'jerry', 'john']

# now to check a new instance has a new clean names array 
newInstance = new MyClass
newInstance.getNames() # === ['joe', 'jerry']


# test should not be affected
test.getNames() # === ['joe', 'jerry', 'john']

コンパイルされたJavascript

var MyClass;

MyClass = function() {
  var names;
  names = ['joe', 'jerry'];
  MyClass = (function() {

    MyClass.name = 'MyClass';

    function MyClass() {}

    MyClass.prototype.getNames = function() {
      return names;
    };

    return MyClass;

  })();
  return new MyClass;
};

私はこの実装が大好きです。欠点はありますか?
Erik5388 2017年

2

これは、ここにある他のいくつかの回答とhttps://stackoverflow.com/a/7579956/1484513を利用したソリューションです。プライベートインスタンス(非静的)変数をプライベートクラス(静的)配列に格納し、オブジェクトIDを使用して、その配列のどの要素に各インスタンスに属するデータが含まれているかを認識します。

# Add IDs to classes.
(->
  i = 1
  Object.defineProperty Object.prototype, "__id", { writable:true }
  Object.defineProperty Object.prototype, "_id", { get: -> @__id ?= i++ }
)()

class MyClass
  # Private attribute storage.
  __ = []

  # Private class (static) variables.
  _a = null
  _b = null

  # Public instance attributes.
  c: null

  # Private functions.
  _getA = -> a

  # Public methods.
  getB: -> _b
  getD: -> __[@._id].d

  constructor: (a,b,@c,d) ->
    _a = a
    _b = b

    # Private instance attributes.
    __[@._id] = {d:d}

# Test

test1 = new MyClass 's', 't', 'u', 'v'
console.log 'test1', test1.getB(), test1.c, test1.getD()  # test1 t u v

test2 = new MyClass 'W', 'X', 'Y', 'Z'
console.log 'test2', test2.getB(), test2.c, test2.getD()  # test2 X Y Z

console.log 'test1', test1.getB(), test1.c, test1.getD()  # test1 X u v

console.log test1.a         # undefined
console.log test1._a        # undefined

# Test sub-classes.

class AnotherClass extends MyClass

test1 = new AnotherClass 's', 't', 'u', 'v'
console.log 'test1', test1.getB(), test1.c, test1.getD()  # test1 t u v

test2 = new AnotherClass 'W', 'X', 'Y', 'Z'
console.log 'test2', test2.getB(), test2.c, test2.getD()  # test2 X Y Z

console.log 'test1', test1.getB(), test1.c, test1.getD()  # test1 X u v

console.log test1.a         # undefined
console.log test1._a        # undefined
console.log test1.getA()    # fatal error

2

ここだ、私は設定について発見された最良の記事public static membersprivate static memberspublic and private members、およびいくつかの他の関連するものが。それは多くの詳細とjscoffee比較をカバーしています。そして歴史的な理由から、ここにそれからの最良のコード例があります:

# CoffeeScript

class Square

    # private static variable
    counter = 0

    # private static method
    countInstance = ->
        counter++; return

    # public static method
    @instanceCount = ->
        counter

    constructor: (side) ->

        countInstance()

        # side is already a private variable, 
        # we define a private variable `self` to avoid evil `this`

        self = this

        # private method
        logChange = ->
            console.log "Side is set to #{side}"

        # public methods
        self.setSide = (v) ->
            side = v
            logChange()

        self.area = ->
            side * side

s1 = new Square(2)
console.log s1.area()   # output 4

s2 = new Square(3)
console.log s2.area()   # output 9

s2.setSide 4            # output Side is set to 4
console.log s2.area()   # output 16

console.log Square.instanceCount() # output 2

1

Coffeescriptで非静的なプライベートメンバーを宣言する方法は次のとおりです
。完全なリファレンスについては、https://github.com/vhmh2005/jsClassをご覧ください。

class Class

  # private members
  # note: '=' is used to define private members
  # naming convention for private members is _camelCase

  _privateProperty = 0

  _privateMethod = (value) ->        
    _privateProperty = value
    return

  # example of _privateProperty set up in class constructor
  constructor: (privateProperty, @publicProperty) ->
    _privateProperty = privateProperty

1

コーヒースクリプトの「クラス」は、プロトタイプベースの結果につながります。したがって、プライベート変数を使用する場合でも、インスタンス間で共有されます。あなたはこれを行うことができます:

EventEmitter = ->
  privateName = ""

  setName: (name) -> privateName = name
  getName: -> privateName

..につながる

emitter1 = new EventEmitter()
emitter1.setName 'Name1'

emitter2 = new EventEmitter()
emitter2.setName 'Name2'

console.log emitter1.getName() # 'Name1'
console.log emitter2.getName() # 'Name2'

ただし、コーヒースクリプトはパブリック関数をオブジェクトとして返すため、プライベートメンバーをパブリック関数の前に配置するように注意してください。コンパイルされたJavascriptを見てください:

EventEmitter = function() {
  var privateName = "";

  return {
    setName: function(name) {
      return privateName = name;
    },
    getName: function() {
      return privateName;
    }
  };
};

0

コーヒースクリプトはJavaScriptにコンパイルされるため、プライベート変数を使用できる唯一の方法はクロージャを使用することです。

class Animal
  foo = 2 # declare it inside the class so all prototypes share it through closure
  constructor: (value) ->
      foo = value

  test: (meters) ->
    alert foo

e = new Animal(5);
e.test() # 5

これは、次のJavaScriptを介してコンパイルされます。

var Animal, e;
Animal = (function() {
  var foo; // closured by test and the constructor
  foo = 2;
  function Animal(value) {
    foo = value;
  }
  Animal.prototype.test = function(meters) {
    return alert(foo);
  };
  return Animal;
})();

e = new Animal(5);
e.test(); // 5

もちろん、これにはクロージャを使用して持つことができる他のすべてのプライベート変数と同じ制限があります。たとえば、新しく追加されたメソッドは、同じスコープで定義されていないため、それらにアクセスできません。


9
それは一種の静的メンバーです。e = new Animal(5);f = new Animal(1);e.test()アラート1つ、5つ欲しい。
thejh 2011年

@thejhああ、すみません、今エラーが表示されています。昨日このことについて考えるには遅すぎたと思います。
Ivo Wetzel 2011年

@thejhそれは私に起こりました、私は私の答えでその問題を解決しようとしました。
iConnor 2014

0

CoffeeScriptクラスは、クラスの作成にJavascriptコンストラクターパターンを使用しているため、簡単に行うことはできません。

ただし、次のように言うことができます。

callMe = (f) -> f()
extend = (a, b) -> a[m] = b[m] for m of b; a

class superclass
  constructor: (@extra) ->
  method: (x) -> alert "hello world! #{x}#{@extra}"

subclass = (args...) -> extend (new superclass args...), callMe ->
  privateVar = 1

  getter: -> privateVar
  setter: (newVal) -> privateVar = newVal
  method2: (x) -> @method "#{x} foo and "

instance = subclass 'bar'
instance.setter 123
instance2 = subclass 'baz'
instance2.setter 432

instance.method2 "#{instance.getter()} <-> #{instance2.getter()} ! also, "
alert "but: #{instance.privateVar} <-> #{instance2.privateVar}"

ただし、extend()を再度使用する以外の方法で作成されたクラスから継承することはできないため、CoffeeScriptクラスの優れた機能は失われます。instanceofは機能を停止し、この方法で作成されたオブジェクトはもう少しメモリを消費します。また、あなたが使用してはならない新しいスーパーをキーワードキーワードはもう。

重要なのは、クラスがインスタンス化されるたびにクロージャを作成する必要があるということです。純粋なCoffeeScriptクラスのメンバークロージャは、1回だけ作成されます。つまり、クラスランタイムの「タイプ」が作成されたときです。


-3

プライベートメンバーとパブリックメンバーのみを分離する場合は、$変数でラップします。

$:
        requirements:
              {}
        body: null
        definitions: null

と使用 @$.requirements

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.