> 웹 프론트엔드 > 프런트엔드 Q&A > [js 기본] 변수 유형 판단

[js 기본] 변수 유형 판단

jacklove
풀어 주다: 2018-06-11 22:36:25
원래의
2182명이 탐색했습니다.

유형 판단 방법 비교:

[js 기본] 변수 유형 판단

자세히 알고 싶다면 아래를 참조하세요.

참고: 게시물 삭제 방지를 위해 백업을 그대로 복사하세요

JavaScript에는 기본 데이터 유형 5개와 복합 1개가 있습니다. 유형 데이터 유형의 기본 데이터 유형은 정의되지 않음, Null, 부울, 숫자 및 문자열입니다. 복합 데이터 유형은 객체이며 객체는 또한 배열, 함수, 날짜 등과 같은 많은 특정 유형으로 세분화됩니다. 오늘은 변수의 유형을 결정하는 방법에 대해 설명하겠습니다.

다양한 방법을 설명하기 전에 먼저 몇 가지 테스트 변수를 정의하여 다음 방법이 변수 유형을 어떻게 구문 분석할 수 있는지 확인합니다. 다음 변수에는 실제 코딩에서 일반적으로 사용하는 유형이 거의 포함되어 있습니다.

var num  = 123; 
var str  = ‘abcdef’; 
var bool = true; 
var arr  = [1, 2, 3, 4]; 
var json = {name:’wenzi’, age:25}; 
var func = function(){ console.log(‘this is function’); } 
var und  = undefined; 
var nul  = null; 
var date = new Date(); 
var reg  = /^[a-zA-Z]{5,20}$/; 
var error= new Error();
로그인 후 복사


1. typeof를 사용하여 감지
우리가 일반적으로 가장 많이 사용하는 것은 typeof를 사용하여 변수 유형을 감지하는 것입니다. 이번에도 typeof를 사용하여 변수의 유형을 감지합니다.

console.log( 

    typeof num,  

    typeof str,  

    typeof bool,  

    typeof arr,  

    typeof json,  

    typeof func,  

    typeof und,  

    typeof nul,  

    typeof date,  

    typeof reg,  

    typeof error 
); 
// number string boolean object object function undefined object object object object
로그인 후 복사


출력 결과에서 arr, json, nul, date, reg, error가 모두 객체 유형으로 감지되며, 기타 변수도 올바르게 감지할 수 있습니다. . 변수의 유형이 숫자, 문자열, 부울, 함수, 정의되지 않음 또는 json인지 알아야 할 경우 typeof를 사용하여 판단할 수 있습니다. null을 포함한 다른 변수의 유형은 확인할 수 없습니다.

또한 typeof는 배열과 json 유형을 구분할 수 없습니다. typeof 변수를 사용할 때 배열과 json 유형 모두 객체를 출력하기 때문입니다.

  1. 인스턴스 감지 사용
    JavaScript에서는 typeof 연산자를 사용하여 변수 유형을 결정하려고 시도할 때, 어떤 유형의 값을 저장하기 위해 참조 유형을 사용하는 데 문제가 있습니다. 객체가 참조되면 모두 "객체"를 반환합니다. ECMAScript는 이 문제를 해결하기 위해 또 다른 Java 연산자 인스턴스of를 도입합니다. instanceof 연산자는 typeof 연산자와 유사하며 처리 중인 객체의 유형을 식별하는 데 사용됩니다. typeof 메서드와 달리, instanceof 메서드에서는 개발자가 개체가 특정 형식인지 명시적으로 확인해야 합니다. 예:

function Person(){
} var Tom = new Person(); console.log(Tom instanceof Person); // true
로그인 후 복사


다음 예를 살펴보겠습니다.

function Person(){
} function Student(){
} Student.prototype = new Person(); var John = new Student(); console.log(John instanceof Student); // true console.log(John instancdof Person);  // true instanceof还能检测出多层继承的关系。
好了,我们来使用 instanceof检测上面的那些变量:
console.log( 
    num instanceof Number, 
    str instanceof String, 
    bool instanceof Boolean, 
    arr instanceof Array, 
    json instanceof Object, 
    func instanceof Function, 
    und instanceof Object, 
    nul instanceof Object, 
    date instanceof Date, 
    reg instanceof RegExp, 
    error instanceof Error ) // num : false  // str : false  // bool : false  // arr : true  // json : true  // func : true  // und : false  // nul : false  // date : true  // reg : true  // error : true
로그인 후 복사


위의 실행 결과에서 num, str 및 bool이 해당 유형을 감지하지 못한 것을 알 수 있지만 다음 방법을 사용합니다. num 유형을 감지할 수 있습니다:

var num = new Number(123); 
var str = new String(‘abcdef’); 
var boolean = new Boolean(true);
로그인 후 복사


동시에 und 및 nul이 객체 유형으로 감지되는지 확인해야 하며, js에는 정의되지 않음 및 Null의 전역 유형이 없기 때문에 true만 출력합니다. und와 nul은 모두 Object 유형에 속하므로 true가 출력됩니다.

  1. 생성자를 사용하여 감지
    instanceof를 사용하여 변수 유형을 감지하는 경우 숫자, '문자열' 및 부울 유형을 감지할 수 없습니다. 그러므로 우리는 이 문제를 해결하기 위한 다른 방법을 찾아야 합니다.

constructor는 원래 생성자를 가리키는 프로토타입 객체의 속성입니다. 그러나 인스턴스 객체가 속성을 검색하는 순서에 따라 인스턴스 객체에 인스턴스 속성이나 메소드가 없으면 프로토타입 체인에서 검색되므로 인스턴스 객체도 생성자 속성을 사용할 수 있습니다.

먼저 num.constructor의 내용, 즉 숫자 변수의 생성자를 출력해 보겠습니다.

function Number() { [native code] }
Number의 생성자를 가리키는 것을 볼 수 있습니다. 따라서 num.constructor==Number를 사용하여 num이 Number 유형인지 확인할 수 있습니다. 다른 변수도 유사합니다:

function Person(){
} var Tom = new Person();
// undefined和null没有constructor属性 console.log( 
    Tom.constructor==Person, 
    num.constructor==Number, 
    str.constructor==String, 
    bool.constructor==Boolean, 
    arr.constructor==Array, 
    json.constructor==Object, 
    func.constructor==Function, 
    date.constructor==Date, 
    reg.constructor==RegExp, 
    error.constructor==Error );
로그인 후 복사


// 모든 결과는 true입니다.
출력 결과에서 undefed 및 null인 경우 다른 유형의 변수는 생성자를 사용하여 유형을 결정할 수 있습니다.

그러나 생성자를 사용하는 것은 생성자 속성이 수정될 수 있기 때문에 안전하지 않습니다. 이로 인해 잘못된 감지 결과가 발생할 수 있습니다. 예:

function Person(){
} function Student(){
} Student.prototype = new Person(); var John = new Student(); console.log(John.constructor==Student); // false console.log(John.constructor==Person);  // true
로그인 후 복사


위 예에서 Student 프로토타입의 생성자는 다음을 가리키도록 수정되었습니다. Person으로 인해 인스턴스 개체 John의 실제 생성자를 검색하지 못하게 됩니다.

동시에 인스턴스 오브(instanceof)와 생성자(constructor)를 사용할 때 판단되는 배열은 현재 페이지에 선언되어야 합니다! 예를 들어, 페이지(상위 페이지)에는 프레임이 있고, 페이지(하위 페이지)는 프레임에서 참조되며, 이때 하위 페이지에 배열이 선언되고 해당 변수에 할당됩니다. Array == object.constructor;는 false를 반환합니다.
이유:
1. 전송 과정에서는 참조 주소만 전송됩니다.
2. 각 페이지의 Array 네이티브 객체가 참조하는 주소는 하위 페이지에 선언된 배열의 해당 생성자가 하위 페이지의 Array 객체이고 사용되는 배열입니다. 하위 페이지 배열과 같지 않습니다. 그렇지 않으면 문제를 추적하기가 어렵습니다.

  1. Object.prototype.toString.call 사용
    이것이 무엇인지는 상관하지 않습니다. 변수 유형을 감지하는 방법을 살펴보겠습니다.

console.log( 

    Object.prototype.toString.call(num), 

    Object.prototype.toString.call(str), 

    Object.prototype.toString.call(bool), 

    Object.prototype.toString.call(arr), 

    Object.prototype.toString.call(json), 

    Object.prototype.toString.call(func), 

    Object.prototype.toString.call(und), 

    Object.prototype.toString.call(nul), 

    Object.prototype.toString.call(date), 

    Object.prototype.toString.call(reg), 

    Object.prototype.toString.call(error) 
);
로그인 후 복사


// ‘[object Number]’ ‘[object String]’ ‘[object Boolean]’ ‘[object Array]’ ‘[object Object]’
// ‘[object Function]’ ‘[object Undefined]’ ‘[object Null]’ ‘[object Date]’ ‘[object RegExp]’ ‘[object Error]’
从输出的结果来看, Object.prototype.toString.call(变量)输出的是一个字符串,字符串里有一个数组,第一个参数是Object,第二个参数就是这个变量的类型,而且,所有变量的类型都检测出来了,我们只需要取出第二个参数即可。或者可以使用 Object.prototype.toString.call(arr)==”object Array”来检测变量arr是不是数组。

我们现在再来看看ECMA里是是怎么定义 Object.prototype.toString.call的:

Object.prototype.toString( ) When the toString method is called, the following steps are taken:
1. Get the [[Class]] property of this object.
2. Compute a string value by concatenating the three strings “[object “, Result (1), and “]”.
3. Return Result (2)
上面的规范定义了Object.prototype.toString的行为:首先,取得对象的一个内部属性[[Class]],然后依据这个属性,返回一个类似于”[object Array]”的字符串作为结果(看过ECMA标准的应该都知道,[[]]用来表示语言内部用到的、外部不可直接访问的属性,称为“内部属性”)。利用这个方法,再配合call,我们可以取得任何对象的内部属性[[Class]],然后把类型检测转化为字符串比较,以达到我们的目的。

  1. jquery中

    .type的接口,来让我们检测变量的类型:

console.log( 
.type(str), 
.type(arr), 
.type(func), 
.type(nul), 
.type(reg), 
    $.type(error) );
로그인 후 복사


// number string boolean array object function undefined null date regexp error
看到输出结果,有没有一种熟悉的感觉?对,他就是上面使用 Object.prototype.toString.call(变量)输出的结果的第二个参数呀。


我们这里先来对比一下上面所有方法检测出的结果,横排是使用的检测方法, 竖排是各个变量:

类型判断 typeof instanceof constructor toString.call

type输出的结果真的很像。我们来看看jquery(2.1.2版本)内部是怎么实现$.type方法的:


// 实例对象是能直接使用原型链上的方法的 var class2type = {}; var toString = class2type.toString;
// 省略部分代码…
type: function( obj ) { 
    if ( obj == null ) { 
        return obj + “”; 
    } 
    // Support: Android<4.0, iOS<6 (functionish RegExp) 
    return (typeof obj === “object” || typeof obj === “function”) ? 
        (class2type[ toString.call(obj) ] || “object”) : 
        typeof obj; },
// 省略部分代码…
// Populate the class2type map jQuery.each(“Boolean Number String Function Array Date RegExp Object Error”.split(” “), function(i, name) { 
    class2type[ “[object ” + name + “]” ] = name.toLowerCase(); });
로그인 후 복사


我们先来看看jQuery.each的这部分:

// Populate the class2type map
jQuery.each(“Boolean Number String Function Array Date RegExp Object Error”.split(” “), function(i, name) {
class2type[ “[object ” + name + “]” ] = name.toLowerCase();
});

//循环之后,class2type的值是:

class2type = { 

    ‘[object Boolean]’ : ‘boolean’,  

    ‘[object Number]’  : ‘number’, 

    ‘[object String]’  : ‘string’, 

    ‘[object Function]’: ‘function’, 

    ‘[object Array]’   : ‘array’, 

    ‘[object Date]’    : ‘date’, 

    ‘[object RegExp]’  : ‘regExp’, 

    ‘[object Object]’  : ‘object’, 

    ‘[object Error]’   : ‘error’ 
}
로그인 후 복사


再来看看 type方法:

// type的实现 
type: function( obj ) { 

    // 若传入的是null或undefined,则直接返回这个对象的字符串 

    // 即若传入的对象obj是undefined,则返回”undefined” 

    if ( obj == null ) { 

        return obj + “”; 

    } 

    // Support: Android<4.0, iOS<6 (functionish RegExp) 

    // 低版本regExp返回function类型;高版本已修正,返回object类型 

    // 若使用typeof检测出的obj类型是object或function,则返回class2type的值,否则返回typeof检测的类型 

    return (typeof obj === “object” || typeof obj === “function”) ? 

        (class2type[ toString.call(obj) ] || “object”) : 

        typeof obj; 
}
로그인 후 복사


当 typeof obj === “object” || typeof obj === “function”时,就返回 class2type[ toString.call(obj)。到这儿,我们就应该明白为什么Object.prototype.toString.call和$.type那么像了吧,其实jquery中就是用 Object.prototype.toString.call实现的,把’[object Boolean]’类型转成’boolean’类型并返回。若class2type存储的没有这个变量的类型,那就返回”object”。
除了”object”和”function”类型,其他的类型则使用typeof进行检测。即 number,  string,  boolean类型的变量,使用typeof即可。

本文讲解了【js基础】变量类型判断 更多相关内容请关注php中文网。

相关推荐:

JQuery中DOM操作——wrap

django 使用 request 获取浏览器发送的参数

React this绑定的几点思考

위 내용은 [js 기본] 변수 유형 판단의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿