溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

什么是javascript uber

發(fā)布時間:2021-11-01 15:34:09 來源:億速云 閱讀:132 作者:iii 欄目:web開發(fā)

本篇內(nèi)容介紹了“什么是javascript uber”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細閱讀,能夠?qū)W有所成!

javascript uber是早期javascript中用于讓某方法調(diào)用父類的一種方法,uber方法類似于Java的super。

什么是javascript uber

本文操作環(huán)境:windows7系統(tǒng)、javascript1.8.5版,DELL G3電腦。

javascript uber是什么?

在早期的JavaScript中,uber方法類似于Java的super,它可以讓某方法調(diào)用父類的方法。Douglas Crockford使用了德語的"über",其意思類似于super,避免了和保留字的沖突。

但是,Crockford也說,super的思想在classical設(shè)計模式中很重要,但是在JavaScript的原型和函數(shù)設(shè)計模式中,顯得沒有必要。Classical Inheritance in JavaScript經(jīng)典的面向?qū)ο笳Z言一般都有訪問父類(超類)的特殊語法,這樣子類的方法就可以使用父類的方法了,子類和父類的方法同名?,F(xiàn)代JavaScript中,沒有這種特殊語法,uber可以實現(xiàn)這一功能,但是繁瑣一些。來看下面的例子:

// inheritance helper
function extend(Child, Parent) {
  var F = function () {};
  F.prototype = Parent.prototype;
  Child.prototype = new F();
  Child.prototype.constructor = Child;
  Child.uber = Parent.prototype;
}
// define -> augment
function Shape() {}
Shape.prototype.name = 'Shape';
Shape.prototype.toString = function () {
  return this.constructor.uber
  ? this.constructor.uber.toString() + ', ' + this.name
  : this.name;
};
// define -> inherit -> augment
function TwoDShape() {}
extend(TwoDShape, Shape);
TwoDShape.prototype.name = '2D shape';
// define
function Triangle(side, height) {
  this.side = side;
  this.height = height;
}
// inherit
extend(Triangle, TwoDShape);
// augment
Triangle.prototype.name = 'Triangle';
Triangle.prototype.getArea = function () {
  return this.side * this.height / 2;
};

在Console中輸入:

var my = new Triangle(5, 10);
my.toString();

輸出:"Shape, 2D shape, Triangle"

派生的層次是:Shape -> TwoDShape -> Triangle

函數(shù)extend將繼承的代碼封裝了起來。

臨時構(gòu)造函數(shù)F()的作用:當(dāng)子類的屬性改變時,不改變父類的屬性。

uber屬性:指向父類原型。

toString()方法中,檢查構(gòu)造函數(shù)的父類的原型是否存在,如果存在,則調(diào)用其toString()方法,由此實現(xiàn)了在子類中調(diào)用父類方法。

“什么是javascript uber”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI