javascript 原型鏈

來源:互聯網
上載者:User

標籤:ack   sign   article   函數   code   一個   原型   text   detail   

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title></title>    <script type="text/javascript">        /*function Person(name){            this.name = name        }*/        var Person = function(name){            this.name = name;        };        Person.prototype.getName = function(){            return this.name;        };        var oPerson01 = new Person(‘fengyouqi‘);        oPerson01.getName();        /*        * JS在建立對象(不論是普通對象還是函數對象)的時候,都有一個叫做 _proto_ 的內建屬性,用於指向建立它的函數對象的原型對象prototype        * console.log(oPerson01.__proto__ === Person.prototype)     //true        * */        console.log(oPerson01.__proto__ === Person.prototype);      //true        /*        * 同樣,Person.prototype對象也有 _proto_ 屬性,它指向建立它的函數對象(Object)的prototype        * console.log(Person.prototype.__proto__ === Object.prototype)   //true        * */        console.log(Person.prototype.__proto__ === Object.prototype);   //true        /*        * 繼續,Object.prototype對象也有 _proto_ 屬性,但它比較特殊,為null        * console.log(Object.prototype.__proto__)     //null        * */        console.log(Object.prototype.__proto__);     //null        /*        *   這個有 _proto_ 串起來的直到Object.prototype._proto_為null的鏈叫做原型鏈        * */       </script></head><body></body></html>

參考:

http://blog.csdn.net/i10630226/article/details/48689561

http://www.cnblogs.com/dolphinX/p/4385862.html

http://www.ruanyifeng.com/blog/2011/06/designing_ideas_of_inheritance_mechanism_in_javascript.html

javascript 原型鏈

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.