LanX²: Function.prototype.begetObject

Beitrag lesen

Hi

Object.prototype.begetObject = function () {
    function F() {}
    F.prototype = this;
    return new F();
};

hash={a:1,b:2};

var out="";
for (i in hash) out+=i+':'+hash[i]+'\n';
alert(out)


>   
> Also Finger weg von Object.prototype!!!  
>   
> Lieber ein eigenes Wurzelobjekt definieren von dem alle "Spezialobjekte" abgeleitet werden.  
  
ich habe ihn gerade angeschrieben dass er lieber Function.prototype.begetObject schreiben solle, um diese Probleme zu umgehen.  
  
In JSLint propagiert er übrigens, dass man for (in) immer mit Vorsicht und im Zweifelsfalle mit hasOwnProperty nutzen solle, um solchen Problemen auszuweichen:  
~~~javascript
  
for (name in object) if (object.hasOwnProperty(name)) {  
    ....  
  
}

http://www.jslint.com/lint.html

aber mit Function hat er dieses Problem hier zumindest nicht mehr!

Möge die Engine mit euch sein!
  LanX

0 67

Vererbungshierarchie ?!?

Kurt Z
  • javascript
  1. 0
    Struppi
    1. 0
      molily
    2. 0
      Don P
      1. 0
        Kurt Z
        1. 0
          Struppi
          1. 0
            Don P
            1. 0
              Struppi
              1. 0
                Don P
                1. 0
                  Struppi
                  1. 0
                    Don P
                    1. 0
                      Struppi
                      1. 0
                        Don P
                        1. 0
                          Struppi
                          1. 0
                            Don P
                      2. 0
                        Kurt Z
                        1. 0
                          Struppi
                          1. 0
                            Kurt Z
                            1. 0
                              Struppi
                              1. 0
                                Kurt Z
                                1. 0
                                  Struppi
                                  1. 0
                                    Kurt Z
                                    1. 0
                                      LanX²
                                    2. 0
                                      Struppi
                                      1. 0
                                        Kurt Z
                                        1. 0
                                          Kurt Z
                                        2. 0
                                          Struppi
                                          1. 0
                                            Kurt Z
                              2. 0
                                Don P
              2. 0
                LanX²
                1. 0

                  Function.prototype.begetObject

                  LanX²
                  1. 0
                    Don P
                    1. 0

                      Knobelaufgabe

                      LanX²
                      1. 0
                        Don P
                    2. 0
                      molily
                      1. 0
                        Kurt Z
                        1. 0

                          Please beget it!

                          LanX²
                          1. 0
                            Kurt Z
                          2. 0
                            Don P
                            1. 0
                              LanX²
                              1. 0
                                Don P
                              2. 0

                                Iterator

                                KurtZ
                                1. 0
                                  LanX
                      2. 0
                        Don P
        2. 0

          new Object(x) statt object(x)

          Kurt Z
          1. 0
            Murphy
            1. 0
              Kurt Z
              1. 0
                Don P
              2. 0
                Murphy
                1. 0
                  Kurt Z
                2. 0
                  molily
  2. 0
    LanX²
  3. 0
    molily
  4. 3

    __proto__ chain

    LanX²
    1. 0
      LanX²
      1. 0
        Kurt Z
    2. 1
      molily
  5. 0

    JS-Version?

    Kurt Z
    1. 0
      Kurt Z
      1. 0
        molily
        1. 0
          molily
    2. 0
      molily
      1. 0
        Kurt Z
        1. 0
          molily
          1. 0
            Kurt Z
  6. 0

    VIELEN DANK!!!

    Kurt Z
    1. 0
      Struppi