Can I set the type of a Javascript object?

后端 未结 5 1450
忘了有多久
忘了有多久 2021-02-02 00:15

I\'m trying to use some of the more advanced OO features of Javascript, following Doug Crawford\'s \"super constructor\" pattern. However, I don\'t know how to set and get types

相关标签:
5条回答
  • 2021-02-02 00:22

    In Firefox only, you can use the __proto__ property to replace the prototype for an object. Otherwise, you cannot change the type of an object that has already been created, you must create a new object using the new keyword.

    0 讨论(0)
  • 2021-02-02 00:36

    if you're using a constructor, a better solution than instanceOf, would be this :

    Object.toType = function(obj) {
      return ({}).toString.call(obj).match(/\s([a-z|A-Z]+)/)[1].toLowerCase();
    }
    
    
    toType({a: 4}); //"object"
    toType([1, 2, 3]); //"array"
    (function() {console.log(toType(arguments))})(); //arguments
    toType(new ReferenceError); //"error"
    toType(new Date); //"date"
    toType(/a-z/); //"regexp"
    toType(Math); //"math"
    toType(JSON); //"json"
    toType(new Number(4)); //"number"
    toType(new String("abc")); //"string"
    toType(new Boolean(true)); //"boolean"
    toType(new CreateBicycle(2)); //"createbicycle"
    

    The explanation of WHY it's the best way to do it relies in This post.

    0 讨论(0)
  • 2021-02-02 00:38

    In my opinion, in a properly designed type heirarchy, you don't need to know the types of the individual objects. But I seem to be in the minority on that point.

    If you must have type identification, make it explicit.

    MyClass.prototype.type = "MyClass";

    It is reliable and portable, at least for your objects. It also works across contexts. DOM objects are another matter, although you can make things easier for yourself with

    window.type = "window";

    and so on.

    I believe the quote above was written by Douglas Crockford.

    0 讨论(0)
  • 2021-02-02 00:46

    The instanceof operator, internally, after both operand values are gather, uses the abstract [[HasInstance]](V) operation, which relies on the prototype chain.

    The pattern you posted, consists simply on augmenting objects, and the prototype chain is not used at all.

    If you really want to use the instanceof operator, you can combine another Crockford's technique, Prototypal Inheritance with super constructors, basically to inherit from the Bicycle.prototype, even if it's an empty object, only to fool instanceof:

    // helper function
    var createObject = function (o) {
      function F() {}
      F.prototype = o;
      return new F();
    };
    
    function Bicycle(tires) {
        var that = createObject(Bicycle.prototype); // inherit from Bicycle.prototype
        that.tires = tires;                         // in this case an empty object
        that.toString = function () {
          return 'Bicycle with ' + that.tires + ' tires.';
        };
    
        return that;
    }
    
    var bicycle1 = Bicycle(2);
    
    bicycle1 instanceof Bicycle; // true
    

    A more in-depth article:

    • JavaScript parasitic inheritance, power constructors and instanceof.
    0 讨论(0)
  • 2021-02-02 00:46

    If you declare Bicycle like this, instanceof will work:

    function Bicycle(tires) {
      this.tires = tires;
      this.toString = function () {
        return 'Bicycle with ' + tires + ' tires.';
      }
    }
    
    var b = new Bicycle(2);
    console.log(b instanceof Bicycle);
    
    0 讨论(0)
提交回复
热议问题