欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

JS中不為人知的五種聲明Number的方式簡要概述

 更新時間:2013年02月22日 10:29:26   作者:  
聲明一個數(shù)值類型的變量我看到三種;我嘴角微微一笑:少年你還嫩了點(diǎn),哪止三種,我知道的至少有五種,好奇的你可以參考下哈,希望本文可以幫助到你
跟小組里一自稱小方方的賣萌90小青年聊天,IT男的壞習(xí)慣,聊著聊著就扯到技術(shù)上去了,小方方突然問
1、聲明一個數(shù)值類型的變量我看到三種,區(qū)別在哪:
復(fù)制代碼 代碼如下:

var num = 123; //方式一
var num = Number(123);
var num = new Number(123);

2、方式一明明是個數(shù)字字面量,為毛平常我們可以直接在上面調(diào)用各種方法,如下:
復(fù)制代碼 代碼如下:

var num = 123;
console.log(num.toString());

我嘴角微微一笑:少年你還嫩了點(diǎn),哪止三種,我知道的至少有五種??!
笑著笑著嘴角開始抽搐,額角開始冒出了冷汗:至少有五種,沒錯,但是。。。區(qū)別在哪。。。
懷著老菜鳥特有的矜持和驕傲,我不屑地說:這都不知道,自己查資料去。。。轉(zhuǎn)過身,開始翻ECMAS - 262(第五版)

一、五種聲明數(shù)值類型變量的方式
復(fù)制代碼 代碼如下:

//方式一:最常見的方式,通過數(shù)字字面量方式聲明
var num = 123;
//方式二:偶爾使用方式,大部分情況下是將字符串轉(zhuǎn)成數(shù)字
var num = Number(123);
//方式三:很少使用,各神書,包括犀牛書,都將其列入不推薦方式
var num = new Number(123);
//方式四:神方式,目前還沒見過人使用
var num = new Object(123);
//方式五:更離奇,更詭異
var num = Object(123);

可以看到,在上5種聲明方式種,方式一不用怎么說了,平常都是這樣用的;方式三 to 方式五屬于比較的使用,下文會分別說明:
1.五種聲明方式的區(qū)別?當(dāng)你用顫巍巍的手指敲下代碼后,究竟發(fā)生了神馬?
2.方式一聲明的明明不是對象,但為什么平常我們可以在上面調(diào)用方法,如toString等?

二、各種聲明方式之間的區(qū)別
方式一:var num = 123
;
EC5說明:
A numeric literal stands for a value of the Number type. This value is determined in two steps: first, a mathematical value (MV) is derived from the literal; second, this mathematical value is rounded as described below
//.....個人總結(jié)摘要:
1.解析變量的值,比如說取出整數(shù)部分、小數(shù)部分等,因?yàn)閿?shù)字聲明方式還可以為num = .123,num = 123e4等形式
2.對解析出來的值取近似值,比如num = 123.33333333333333...3333333333333333333333333....,這個時候就要取近似值了,具體取近似則規(guī)則不展開
3.此種方式聲明的變量,只是個簡單的數(shù)字字面量,并不是對象(至于為什么可以在上面調(diào)用toString等方法,后文講解)
方式二:var num = Number(123);
EC5說明:
15.7.1 The Number Constructor Called as a Function
When Number is called as a function rather than as a constructor, it performs a type conversion. 15.7.1.1 Number ( [ value ] )
Returns a Number value (not a Number object) computed by ToNumber(value) if value was supplied, else returns +0.個人總結(jié)摘要:
1.此處只是將Number當(dāng)作一個普通的函數(shù)來調(diào)用,而不是構(gòu)造方法,因此返回的不是對象,而是一個簡單的數(shù)值
2.本質(zhì)與方式一相同;相對于方式一的區(qū)別在于,需要針對傳入?yún)?shù)的類型,執(zhí)行不同的類型轉(zhuǎn)換過程,試圖將參數(shù)解析成對應(yīng)的數(shù)值,具體規(guī)則如下:
 
方式三:var num = new Number(123);
EC5說明:
15.7.2 The Number Constructor
When Number is called as part of a new expression it is a constructor: it initialises the newly created object. 15.7.2.1 new Number ( [ value ] )
The [[Prototype]] internal property of the newly constructed object is set to the original Number prototype object, the one that is the initial value of Number.prototype (15.7.3.1).
The [[Class]] internal property of the newly constructed object is set to "Number".
The [[PrimitiveValue]] internal property of the newly constructed object is set to ToNumber(value) if value was
supplied, else to +0.
The [[Extensible]] internal property of the newly constructed object is set to true.個人總結(jié)摘要:
1.此處將Number作用構(gòu)造方法調(diào)用,返回的是Number類型的對象,該對象能夠訪問Number的原型屬性以及方法;這樣說可能有些迷惑,后面會說到
復(fù)制代碼 代碼如下:

var num = new Number(123);
console.log(typeof num); //輸出:object
console.log(Object.prototype.toString.call(num)); //輸出:[object Number]

3.返回的Number類型對象內(nèi)部的原始值( [[PrimitiveValue]]),為經(jīng)過類型轉(zhuǎn)換后獲得的數(shù)字值,具體轉(zhuǎn)換規(guī)則與方式二提到的一致

方式四:var num = new Object(123);
EC5說明:
15.2.2 The Object Constructor
When Object is called as part of a new expression, it is a constructor that may create an object.
15.2.2.1 new Object ( [ value ] )
When the Object constructor is called with no arguments or with one argument value, the following steps are taken:
1.If value is supplied, then
a. If Type(value) is Object, then
1.If the value is a native ECMAScript object, do not create a new object but simply return value.
2.If the value is a host object, then actions are taken and a result is returned in an implementation-dependent manner that may depend on the host object.
b. If Type(value) is String, return ToObject(value).
c. If Type(value) is Boolean, return ToObject(value).
d. If Type(value) is Number, return ToObject(value).
2.Assert: The argument value was not supplied or its type was Null or Undefined.
3.Let obj be a newly created native ECMAScript object.
4.Set the [[Prototype]] internal property of obj to the standard built-in Object prototype object (15.2.4).
5.Set the [[Class]] internal property of obj to "Object".
6.Set the [[Extensible]] internal property of obj to true.
7.Set all the internal methods of obj as specified in 8.12.
8.Return obj.
個人理解說明
  上面洋洋灑灑的貼了好多文字,可能看著有些頭疼,因?yàn)橥ㄟ^ new Object(param) 這種方式聲明變量,根據(jù)傳入?yún)?shù)具體類型的不同,得到的結(jié)果也會有區(qū)別,比如說數(shù)據(jù)類型。這里面具體轉(zhuǎn)換的規(guī)則,可以忽略不計(jì),我們只看我們目前關(guān)系的部分,即上面標(biāo)紅色的文字,要點(diǎn)有:
1.傳遞了參數(shù),且參數(shù)是一個數(shù)字,則創(chuàng)建并返回一個Number類型的對象 —— 沒錯,其實(shí)等同于方式三
2.該Number對象的值等于傳入的參數(shù),內(nèi)部的[[prototype]]屬性指向Number.prototype
方式五:var num = Object(123);
EC5說明:
15.2.1 The Object Constructor Called as a Function
When Object is called as a function rather than as a constructor, it performs a type conversion.
15.2.1.1 Object ( [ value ] )
When the Object function is called with no arguments or with one argument value, the following steps are taken:
1.If value is null, undefined or not supplied, create and return a new Object object exactly as if the standard built-in Object constructor had been called with the same arguments (15.2.2.1).
2.Return ToObject(value).
個人理解說明
1.當(dāng)傳入的參數(shù)為空、undefined或null時,等同于 new Object(param),param為用戶傳入的參數(shù)
2.否則,返回一個對象,至于具體轉(zhuǎn)換成的對象類型,可參見下表;具體到上面的例子,本質(zhì)等同于new Number(123):
 
3. 簡單測試用例
復(fù)制代碼 代碼如下:

var num = Object(123);
console.log(typeof num); //輸出:object console.log(Object.prototype.toString.call(num)); //輸出:[object Number]

三、var num = 123; 與 var num = new Number(123);
各位先賢哲們告誡我們最好用第一種方式,理由成分,擲地有聲:效率低,eval(num)的時候可能有意外的情況發(fā)生。。。巴拉巴拉
拋開上面的雜音,我們這里要關(guān)注的是,為什么下面的語句不會出錯:
復(fù)制代碼 代碼如下:

var num = 123;
console.log(num.toString(num)); //輸出:'123',竟然沒出錯

不是說字面量方式聲明的只是普通的數(shù)值類型,不是對象嗎?但不是對象哪來的toString方法調(diào)用,這不科學(xué)!
好吧,查了下犀牛書,找到了答案
當(dāng)用戶通過字面量方式聲明一個變量,并在該變量上調(diào)用如toString等方法,JS腳本引擎會偷偷地創(chuàng)建該變量對應(yīng)的包裝對象,并在該對象上調(diào)用對應(yīng)的方法;當(dāng)調(diào)用結(jié)束,則銷毀該對象;這個過程對于用戶來說是不可見的,因此不少初學(xué)者會有這方面的困惑。

好吧,我承認(rèn)上面這段話并不是原文內(nèi)容,只是個人對犀牛書對應(yīng)段落的理解,為了顯得更加專業(yè)權(quán)威故意加了引用標(biāo)識。。。上面舉的那個例子,可以簡單看作下面過程:
復(fù)制代碼 代碼如下:

var num = 123;
var tmp = num;
num = new Number(num);
console.log(num.toString(num));
num = tmp;

(因?yàn)樽蛲矸?guī)范翻到快1點(diǎn),實(shí)在困的不行,就偷懶了,相信犀牛書不會坑我)

四、寫在后面
Javascript的變量聲明方式、類型判斷等,一直都覺得無力吐槽,上面的內(nèi)容對于初學(xué)者來說,無異于毀三觀;即使對于像本人這樣已經(jīng)跟Javascript廝守了兩年多的老菜鳥,經(jīng)常也被弄得稀里糊涂
簡單總結(jié)一下:
1.方式一、方式二本質(zhì)相同
2.方式三、方式四、方式五本質(zhì)相同
最后的最后:
文中示例如有錯漏,請指出;如覺得文章對您有用,可點(diǎn)擊“推薦” :)

相關(guān)文章

  • JavaScript高級程序設(shè)計(jì) 閱讀筆記(七) ECMAScript中的語句

    JavaScript高級程序設(shè)計(jì) 閱讀筆記(七) ECMAScript中的語句

    ECMAScript中的語句,學(xué)習(xí)js的朋友可以參考下
    2012-02-02
  • mapboxgl實(shí)現(xiàn)帶箭頭軌跡線的代碼

    mapboxgl實(shí)現(xiàn)帶箭頭軌跡線的代碼

    這篇文章主要介紹了mapboxgl實(shí)現(xiàn)帶箭頭軌跡線的代碼,本文給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下
    2021-01-01
  • js中判斷對象是否為空的三種實(shí)現(xiàn)方法

    js中判斷對象是否為空的三種實(shí)現(xiàn)方法

    本篇文章主要是對js中判斷對象是否為空的三種實(shí)現(xiàn)方法進(jìn)行了詳細(xì)的分析介紹,需要的朋友可以過來參考下,希望對大家有所幫助
    2013-12-12
  • JavaScript控制table某列不顯示的方法

    JavaScript控制table某列不顯示的方法

    這篇文章主要介紹了JavaScript控制table某列不顯示的方法,涉及javascript操作表單的技巧,非常具有實(shí)用價值,需要的朋友可以參考下
    2015-03-03
  • js實(shí)時獲取系統(tǒng)當(dāng)前時間實(shí)例代碼

    js實(shí)時獲取系統(tǒng)當(dāng)前時間實(shí)例代碼

    在網(wǎng)頁中實(shí)時的顯示時間,不但可以給網(wǎng)頁添色,還可以方便瀏覽者掌握當(dāng)前時間,為了提高網(wǎng)站的開發(fā)速度,可以把主代碼封裝在一個單獨(dú)的函數(shù)里面,在需要的時候直接調(diào)用 而我為了演示,直接寫在了主頁面,方便大家觀看
    2013-06-06
  • Postman如何實(shí)現(xiàn)參數(shù)化執(zhí)行及斷言處理

    Postman如何實(shí)現(xiàn)參數(shù)化執(zhí)行及斷言處理

    這篇文章主要介紹了Postman如何實(shí)現(xiàn)參數(shù)化執(zhí)行及斷言處理,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下
    2020-07-07
  • 最新評論