CoffeeScript में निजी सदस्य?


84

क्या किसी को कॉफ़ीस्क्रिप्ट में निजी, गैर-स्थिर सदस्य बनाने का तरीका पता है? वर्तमान में मैं यह कर रहा हूं, जो सिर्फ एक सार्वजनिक चर का उपयोग करता है जो यह स्पष्ट करने के लिए एक अंडरस्कोर के साथ शुरू होता है कि इसका उपयोग कक्षा के बाहर नहीं किया जाना चाहिए:

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

  getName: -> @_name

चर को कक्षा में रखने से यह एक स्थिर सदस्य बन जाता है, लेकिन मैं इसे गैर-स्थिर कैसे बना सकता हूं? क्या "फैंसी" प्राप्त किए बिना यह संभव है?

जवाबों:


20

क्या "फैंसी" प्राप्त किए बिना यह संभव है?

कहने के लिए दुःख की बात है, आपको फैंसी होना चाहिए ।

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

याद रखें, "यह सिर्फ जावास्क्रिप्ट है।"


1
... और इसलिए आपको इसे करना होगा जैसा आप जेएस में करेंगे। यह चीनी, धन्यवाद के पीछे छिपा हुआ है जब यह भूल करने के लिए आसान!
thejh

4
क्या यह वास्तव में निजी है? आप अभी भी इसे कक्षा के बाहर एक्सेस कर सकते हैं। a = थिंग ('ए') फिर a.getName () मान लौटाता है और a.getName = -> 'b' इसे सेट करता है।
आमिर

4
@Amir: nameकेवल कंस्ट्रक्टर क्लोजर के अंदर से दिखाई देता है। इस जिस्ट को देखें
thejh

13
यह भी ध्यान देने योग्य है कि फ़ंक्शन के @getName = -> nameकिसी भी संभावित विरासत को तोड़ने के लिए लगता है getName
केंडल हॉपकिंस

12
यह उत्तर गलत है: यहां, getNameसार्वजनिक है, और nameकेवल निर्माता फ़ंक्शन से ही सुलभ है, इसलिए यह वास्तव में ऑब्जेक्ट के लिए "निजी" नहीं है।
टोटेमारियो

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

कॉफ़ीस्क्रिप्ट इसे निम्नलिखित में संकलित करता है:

(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
यह ध्यान दिया जाना चाहिए कि ये निजी चर उपवर्गों के लिए उपलब्ध नहीं हैं ।
सेसर बॉतिस्ता

45
यह भी ध्यान दिया जाना चाहिए कि 'निजी' तरीकों की तरह कहा जा करने की आवश्यकता होगी foo.call(this)के लिए आदेश में thisसमारोह का उदाहरण माना जाता है। यही कारण है कि जावास्क्रिप्ट में शास्त्रीय विरासत का अनुकरण करने की कोशिश करने से बाल झड़ जाते हैं।
जॉन विंगफील्ड

3
एक और नकारात्मक पहलू यह है कि आपके पास इकाई परीक्षण के लिए "निजी" तरीकों तक पहुंच नहीं होगी ..
nuc

16
@ निजी तरीके लागू करने वाले विवरण हैं जो उन सार्वजनिक विधियों के माध्यम से परीक्षण किए जाते हैं जो उन्हें कॉल करते हैं, जो यह कहना है कि निजी तरीकों को यूनिट परीक्षण नहीं किया जाना चाहिए। यदि कोई निजी तरीका ऐसा लगता है जैसे यह इकाई परीक्षण योग्य होना चाहिए, तो शायद यह एक सार्वजनिक तरीका होना चाहिए। अच्छी व्याख्या के लिए इस पोस्ट को देखें stackoverflow.com/questions/5750279/…
mkelley33

2
यह भी ध्यान दिया जाना चाहिए कि आपको अपने "निजी" चर को ऊपर परिभाषित करने की आवश्यकता होगी जहां वे "सार्वजनिक" कार्यों में उपयोग किए जाते हैं। अन्यथा, कॉफीस्क्रिप्ट भ्रमित हो जाएंगे और नई आंतरिक varघोषणाएं करेंगे जो उन्हें छाया देंगे।
एंड्रयू माइनर

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

विटाली के जवाब में एक समस्या है और वह यह है कि आप उन वेरिएबल्स को परिभाषित नहीं कर सकते हैं जिन्हें आप दायरे के लिए अद्वितीय बनाना चाहते हैं , यदि आपने इस तरह से एक निजी नाम बनाया है और फिर इसे बदल दिया है, तो कक्षा के हर एक उदाहरण के लिए नाम मान बदल जाएगा, इसलिए एक तरीका है जिससे हम उस समस्या को हल कर सकते हैं

# 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

जब तक आप उपयोग नहीं करते तब तक नाम सरणी को बाहर से एक्सेस करना असंभव नहीं है 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']

संकलित जावास्क्रिप्ट

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;
};

मुझे यह क्रियान्वयन बहुत पसंद है। कोई कमियां?
एरिक 5388

2

यहाँ एक समाधान दिया गया है जो अन्य कई उत्तरों के साथ-साथ https://stackoverflow.com/a/7579956/1484513 है । यह एक निजी वर्ग (स्थिर) सरणी में निजी इंस्टेंस (गैर-स्थिर) चर को संग्रहीत करता है और यह जानने के लिए ऑब्जेक्ट आईडी का उपयोग करता है कि उस सरणी के किस तत्व में प्रत्येक उदाहरण से संबंधित डेटा है।

# 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 members, private static members, public and private members, और कुछ अन्य संबंधित सामान। यह बहुत विवरण और jsबनाम coffeeतुलना को कवर करता है । और ऐतिहासिक कारणों से यहाँ इसका सबसे अच्छा कोड उदाहरण है:

# 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

यहां बताया गया है कि आप कॉफ़ीसेप्ट में निजी, गैर-स्थैतिक सदस्यों की घोषणा कैसे कर सकते हैं,
पूर्ण संदर्भ के लिए, आप 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'

लेकिन सार्वजनिक कार्यों से पहले निजी सदस्यों को रखने के लिए सावधान रहें, क्योंकि कॉफी स्क्रिप्ट सार्वजनिक कार्यों को वस्तु के रूप में वापस करती है। संकलित जावास्क्रिप्ट को देखें:

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

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

0

चूँकि कॉफ़ी स्क्रिप्ट जावास्क्रिप्ट के लिए संकलित है जिस तरह से आपके पास निजी चर हो सकते हैं।

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

यह निम्नलिखित जावास्क्रिप्ट के माध्यम से नीचे संकलित करेगा:

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()अलर्ट एक, मुझे पांच चाहिए।
thejh

@ ओह ओह, क्षमा करें, मुझे अब त्रुटि दिखाई देती है, लगता है कि कल इस सामान के बारे में सोचने के लिए बहुत देर हो चुकी थी।
इवो ​​वेटजेल

@ यह मेरे साथ हुआ, मैंने अपने उत्तर में उस समस्या को हल करने का प्रयास किया है।
iConnor

0

आप इसे आसानी से CoffeeScript कक्षाओं के साथ नहीं कर सकते, क्योंकि वे कक्षाएं बनाने के लिए जावास्क्रिप्ट कंस्ट्रक्टर पैटर्न का उपयोग करते हैं।

हालाँकि, आप ऐसा कुछ कह सकते हैं:

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}"

लेकिन आप CoffeeScript कक्षाओं की महानता खो देते हैं, क्योंकि आप फिर से विस्तार () का उपयोग करके किसी भी अन्य तरीके से बनाए गए वर्ग से विरासत में नहीं मिल सकते हैं। instanceof काम करना बंद कर देंगे, और objecs इस तरह से एक छोटे से अधिक स्मृति थोड़ा उपभोग बनाया। साथ ही, आपको अब नए और सुपर कीवर्ड का उपयोग नहीं करना चाहिए ।

मुद्दा यह है, कि हर बार एक क्लास को तुरंत बंद कर दिया जाना चाहिए। शुद्ध CoffeeScript कक्षाओं में सदस्य बंद केवल एक बार बनाया जाता है - वह है, जब वर्ग रनटाइम "प्रकार" का निर्माण किया जाता है।


-3

यदि आप केवल सार्वजनिक से अलग निजी मेमर्स चाहते हैं, तो इसे $ चर में लपेटें

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

और उपयोग करें @$.requirements

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.