日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網(wǎng)為廣大站長(zhǎng)提供免費(fèi)收錄網(wǎng)站服務(wù),提交前請(qǐng)做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(wù)(50元/站),

點(diǎn)擊這里在線咨詢客服
新站提交
  • 網(wǎng)站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會(huì)員:747

彭老濕近期月報(bào)里提到了valueOf方法,興致來(lái)了翻了下ECMA5里關(guān)于valueOf方法的介紹,如下:

15.2.4.4 Object.prototype.valueOf ( )
When the valueOf method is called, the following steps are taken:
1. Let O be the result of calling ToObject passing the this value as the argument.
2. If O is the result of calling the Object constructor with a host object (15.2.2.1), then
a. Return either O or another value such as the host object originally passed to the constructor. The specific result that is returned is implementation-defined.
3. Return O.

規(guī)范里面的對(duì)于valueOf的解釋很短,大致為:調(diào)用ToObject方法(一個(gè)抽象方法,后面會(huì)講到),并將this的值作為參數(shù)傳入。

針對(duì)調(diào)用ToObject時(shí)傳入的不同參數(shù)(this),返回值分別如下:

1、this為宿主對(duì)象時(shí),返回值取決于瀏覽器的實(shí)現(xiàn),即不同瀏覽器的返回可能不同(關(guān)于宿主對(duì)象,可參考http://www.w3school.com.cn/js/pro_js_object_types.asp)

2、this不是宿主對(duì)象,則返回ToObject(this)的值

參數(shù)類型  返回結(jié)果
Undefined拋出TypeError異常
Null拋出TypeError異常
Number創(chuàng)建一個(gè)Number對(duì)象,它內(nèi)部的初始值為傳入的參數(shù)值
String創(chuàng)建一個(gè)String對(duì)象,它內(nèi)部的初始值為傳入的參數(shù)值
Boolean創(chuàng)建一個(gè)Boolean對(duì)象,它內(nèi)部的初始值為傳入的參數(shù)值
Object返回傳入的參數(shù)(無(wú)轉(zhuǎn)換)

根據(jù)Object.prototype.valueOf的定義,以及抽象方法ToObject的描述,可得下表

obj類型  Object.prototype.valueOf.call(obj)返回結(jié)果
Undefined拋出TypeError異常
Null拋出TypeError異常
NumberNumber類型的對(duì)象,值等于obj
StringString類型的對(duì)象,值等于obj
BooleanBoolean類型的對(duì)象,值等于obj
Objectobj對(duì)象本身

舉幾個(gè)具體的例子:


var num = 123;
console.log(num.valueOf());  //輸出:123
console.log(num.valueOf());  //輸出:'number'

var unde = undefined;
console.log(Object.prototype.valueOf.call(unde));  //輸出:'TypeError: Cannot convert null to object'

var obj = {name:'casper'};
var linkObj = obj.valueOf();
linkObj.name = 'change';
console.log(linkObj.name);  //輸出:'change' ...說(shuō)明obj.valueOf()返回的是對(duì)象自身



 實(shí)際上,上面沒有提到Array、Function對(duì)象,根據(jù)下面代碼可以猜想,當(dāng)Object.prototype.valueOf調(diào)用時(shí),參數(shù)為Array、Function類型的對(duì)象時(shí),返回的結(jié)果也為對(duì)象自身:


var arr = [1, 2 ,3];
var linkArr = arr.valueOf();
linkArr[0] = ['casper'];
console.log(linkArr);  //輸出:['casper', 2, 3]

var foo = function(){ return 1; };
var linkFoo = foo.valueOf();
linkFoo.test = 'casper';
console.log(linkFoo.test);  //輸出:'casper'



看完上面的描述,是不是有種恍然大悟的感覺?如果是的話,恭喜你,可能你跟我一樣其實(shí)還沒完全理解透徹。

簡(jiǎn)單舉個(gè)例子,當(dāng)調(diào)用Object.prototype.valueOf的對(duì)象為數(shù)值類型時(shí),假設(shè)該對(duì)象是名稱為num,num很有可能通過下面兩種方式聲明:


var num = 123;  //通過對(duì)象字面量聲明
console.log(typeof num);  //輸出:'number'

var num = new Number(123);  //通過構(gòu)造方法聲明
console.log(typeof num);  //輸出:'object'



更多變態(tài)聲明方式,可參見《一眼毀三觀:JS中不為人知的五種聲明Number的方式》

關(guān)于返回值的說(shuō)明,ECMA5里面原文如下:

Create a new Number object whose [[PrimitiveValue]] internal property is set to the value of the argument. See 15.7 for a description of Number objects. 

按照這段文字的說(shuō)明,似乎num.valueOf()返回的應(yīng)該是個(gè)Number對(duì)象(非字面量聲明的那種),但實(shí)際上:


var num = 123;
var tmp = num.valueOf();
console.log(typeof tmp);  //輸出: 'number'



這是怎么回事呢?于是又仔細(xì)翻看了下,似乎有些接近真相了:

5.7.4.4 Number.prototype.valueOf ( )

Returns this Number value.

The valueOf function is not generic; it throws a TypeError exception if its this value is not a Number or a Number object. Therefore, it cannot be transferred to other kinds of objects for use as a method. 

原來(lái)Number有屬于自身的原型valueOf方法,不是直接從Object.prototype上繼承下來(lái),類似的,Boolean、String也有自己的原型valueOf方法,歸納如下:

類型    是否有屬于自己的原型valueOf方法
Undefined無(wú)
Null無(wú)
Number有,Number.prototype.valueOf
String有,String.prototype.valueOf
Boolean有,Boolean.prototype.valueOf
Object-

此處之外,Array、Function并沒有自己的原型valueOf方法,見規(guī)范說(shuō)明:

NOTE The Array prototype object does not have a valueOf property of its own; however, it inherits the valueOf property from the standard built-in Object prototype Object. 

The Function prototype object does not have a valueOf property of its own; however, it inherits the valueOf property from the Object prototype Object. 

補(bǔ)充說(shuō)明:Number.prototype.valueOf的內(nèi)部轉(zhuǎn)換規(guī)則比想的要略復(fù)雜些,此處不展開。

啰啰嗦嗦說(shuō)了一大通,現(xiàn)在還有兩個(gè)問題存在疑惑:

關(guān)于ToObject,當(dāng)參數(shù)為Function對(duì)象時(shí),返回對(duì)象作何處理似乎沒見到規(guī)范里明確說(shuō)明,當(dāng)前僅靠實(shí)驗(yàn)猜測(cè)(也有可能是我沒找到)

valueOf的使用場(chǎng)景,實(shí)際開發(fā)中尚未見到有兄弟用過

分享到:
標(biāo)簽:令人發(fā)指 方法 JS valueOf
用戶無(wú)頭像

網(wǎng)友整理

注冊(cè)時(shí)間:

網(wǎng)站:5 個(gè)   小程序:0 個(gè)  文章:12 篇

  • 51998

    網(wǎng)站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會(huì)員

趕快注冊(cè)賬號(hào),推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨(dú)大挑戰(zhàn)2018-06-03

數(shù)獨(dú)一種數(shù)學(xué)游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫(kù),初中,高中,大學(xué)四六

運(yùn)動(dòng)步數(shù)有氧達(dá)人2018-06-03

記錄運(yùn)動(dòng)步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓(xùn)練成績(jī)?cè)u(píng)定2018-06-03

通用課目體育訓(xùn)練成績(jī)?cè)u(píng)定