第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

為什么技術(shù)上,對(duì)象被實(shí)例化?這段沒看懂

為什么技術(shù)上,對(duì)象被實(shí)例化?這段沒看懂

慕絲7291255 2023-04-24 18:14:26
書中講動(dòng)態(tài)原型繼承實(shí)現(xiàn)繼承,給了一段錯(cuò)誤代碼function Polygon(sides){  this.sides = sides;  if(typeof Polygon._initialized == "undefined"){    Polygon.prototype.getName = function(){      return "dash";     } alert(Polygon._initialized);    Polygon._initialized = true;   } }function Triangle(base, height){  Polygon.call(this,3);  this.base = base;  this.height = height;  if(typeof Triangle._initialized == "undefined"){     **;**    Triangle.prototype.getArea = function(){      return 0.5 * this.base * this.height;     }        Triangle._initialized = true;   } }window.onload = function(){  var ri = new Triangle(10,20);  var tri = new Triangle(20,40);  alert(ri.getArea());  alert(ri.getName());  alert(ri.sides);     alert(tri.getArea());    alert(tri.getName());  alert(tri.sides); }粗體部分的代碼有錯(cuò),書中原文解釋:從邏輯上講,這個(gè)位置是正確的,但從功能上講,卻是無效的.從技術(shù)上 說,在代碼運(yùn)行前,對(duì)象已經(jīng)被實(shí)例化,并與原始的prototype對(duì)象聯(lián)系在一起了.雖然用極晚綁定可使對(duì)原型對(duì)象的修改正確地反映出來,但替換 prototype對(duì)象不會(huì)對(duì)該對(duì)象產(chǎn)生任何影響.只有未來的對(duì)象(第二個(gè)以后的對(duì)象)實(shí)例才會(huì)反映出這種改變,這就使第一個(gè)實(shí)例變得不正確。
查看完整描述

2 回答

?
qq_遁去的一_1

TA貢獻(xiàn)1725條經(jīng)驗(yàn) 獲得超8個(gè)贊

第一次 ri = new Triangle 中 this 的 prototype 為原本的 Triangle.prototype
但中途又改了 Triangle.prototype
之后其實(shí)就會(huì) false === ri instanceof Triangle

查看完整回答
反對(duì) 回復(fù) 2023-04-28
?
冉冉說

TA貢獻(xiàn)1877條經(jīng)驗(yàn) 獲得超1個(gè)贊

很有深度又感覺通俗易懂.我原先對(duì)這個(gè)概念也很模糊,

這個(gè)關(guān)鍵的概念只要你懂了,基本其它的也就很容易懂了。


http://img1.sycdn.imooc.com//644b7fa70001ca1e08080492.jpg

查看完整回答
反對(duì) 回復(fù) 2023-04-28
  • 2 回答
  • 0 關(guān)注
  • 131 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)