js的物件導向

來源:互聯網
上載者:User

標籤:執行個體   注意   title   ber   func   ons   string   方法   function   

JavaScript不區分類和執行個體的概念,而是通過原型(prototype)來實現物件導向編程.

原型是指當我們想要建立xiaoming這個具體的學生時,我們並沒有一個Student類型可用

var Student = {    name: ‘Robot‘,    height: 1.2,    run: function () {        console.log(this.name + ‘ is running...‘);    }};var xiaoming = {    name: ‘小明‘};xiaoming.__proto__ = Student;
注意最後一行代碼把xiaoming的原型指向了對象Student,看上去xiaoming彷彿是從Student繼承下來的:

xiaoming.name; // ‘小明‘xiaoming.run(); // 小明 is running... 
所謂繼承關係不過是把一個對象的原型指向另一個對象而已。
上述代碼僅用於示範目的。在編寫JavaScript代碼時,不要直接用obj.__proto__去改變一個對象的原型,並且,低版本的IE也無法使用__proto__Object.create()方法可以傳入一個原型對象,並建立一個基於該原型的新對象,但是新對象什麼屬性都沒有,因此,我們可以編寫一個函數來建立xiaoming
// 原型對象:var Student = {    name: ‘Robot‘,    height: 1.2,    run: function () {        console.log(this.name + ‘ is running...‘);    }};function createStudent(name) {    // 基於Student原型建立一個新對象:    var s = Object.create(Student);    // 初始化新對象:    s.name = name;    return s;}var xiaoming = createStudent(‘小明‘);xiaoming.run(); // 小明 is running...xiaoming.__proto__ === Student; // true
 

js的物件導向

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.