JavaScript的基本包装类型

为了便于操作基本类型值,ECMAScript 提供了3 个特殊的引用类型:Boolean、Number
和String。这些类型与其他引用类型相似,但同时也具有与各自的基本类型相应的特殊行为。
实际上,每当读取一个基本类型值的时候,后台就会创建一个对应的基本包装类型的对象,
从而能够调用一些方法来操作这些数据。

一.基本包装类型概述

  
  
  
  
  1. var box = 'Mr. Lee'//定义一个字符串  
  2. var box2 = box.substring(2); //截掉字符串前两位  
  3. alert(box2); //输出新字符串 . Lee  
  4. alert(box);  //未改变 说明box2为副本 

变量box 是一个字符串类型,而box.substring(2)又说明它是一个对象(PS:只有对象才
会调用方法),最后把处理结果赋值给box2。'Mr. Lee'是一个字符串类型的值,按道理它不
应该是对象,不应该会有自己的方法,比如:

  
  
  
  
  1. alert('Mr. Lee'.substring(2)); //直接通过值来调用方法 

 

  
  
  
  
  1. //1.字面量写法:  
  2. var box = 'Mr. Lee'//字面量  在执行时后台瞬间创建了基本包装对象 执行完这行是立刻释放 box=null
  3. box.name = 'Lee'//无效属性  
  4. box.age = function () { //无效方法  
  5. return 100;  
  6. };  
  7. alert(box); //Mr. Lee  
  8. alert(box.substring(2)); //. Lee  
  9. alert(typeof box); //string  
  10. alert(box.name); //undefined  
  11. alert(box.age()); //错误 

 

  
  
  
  
  1. //2.new 运算符写法:  
  2. var box = new String('Mr. Lee'); //new 运算符  
  3. box.name = 'Lee'//有效属性  
  4. box.age = function () { //有效方法  
  5. return 100;  
  6. };  
  7. alert(box); //Mr. Lee  
  8. alert(box.substring(2)); //. Lee  
  9. alert(typeof box); //object  
  10. alert(box.name); //Lee  
  11. alert(box.age()); //100 

以上字面量声明和new 运算符声明很好的展示了他们之间的区别。但有一定还是可以
肯定的,那就是不管字面量形式还是new 运算符形式,都可以使用它的内置方法。并且
Boolean 和Number 特性与String 相同,三种类型可以成为基本包装类型。
PS:在使用new 运算符创建以上三种类型的对象时,可以给自己添加属性和方法,但
我们建议不要这样使用,因为这样会导致根本分不清到底是基本类型值还是引用类型值。

二.Boolean类型
Boolean 类型没有特定的属性或者方法。

  
  
  
  
  1. var falseObject = new Boolean(false);  
  2. var result = falseObject && true;  
  3. alert(result);  //true  
  4.  
  5. var falseValue = false;  
  6. result = falseValue && true;  
  7. alert(result);  //false  
  8.           
  9. alert(typeof falseObject);   //object  
  10. alert(typeof falseValue);    //boolean  
  11. alert(falseObject instanceof Boolean);  //true  
  12. alert(falseValue instanceof Boolean);   //false 
布尔表达式的所有对象都会转换为true,因此falseObject对象在布尔表达式中代表的是true。

三.Number类型
Number 类型有一些静态属性(直接通过Number 调用的属性,而无须new 运算符)和方
法。

 

 

  
  
  
  
  1. var box = 1000.789;  
  2. alert(box.toString()); //转换为字符串,传参可以转换进制  
  3. alert(box.toLocaleString()); //本地形式,1,000.789  
  4. alert(box.toFixed(2)); //小数点保留,1000.78  
  5. alert(box.toExponential()); //指数形式,传参会保留小数点  
  6. alert(box.toPrecision(3)); //指数或点形式,传参保留小数点 

 

  
  
  
  
  1. var numberObject = new Number(10);  
  2.        var numberValue = 99;  
  3.          
  4.        //toString() using a radix  N进制
  5.        alert(numberObject.toString());       //"10"  
  6.        alert(numberObject.toString(2));      //"1010"  
  7.        alert(numberObject.toString(8));      //"12"  
  8.        alert(numberObject.toString(10));     //"10"  
  9.        alert(numberObject.toString(16));     //"a"  
  10.          
  11.        //toFixed()  
  12.        alert(numberObject.toFixed(2));    //outputs "10.00"  
  13.  
  14.        numberObject = new Number(99);  
  15.        alert(numberObject.toPrecision(1));    //"1e+2"  
  16.        alert(numberObject.toPrecision(2));    //"99"  
  17.        alert(numberObject.toPrecision(3));    //"99.0"  
  18.             
  19.        alert(typeof numberObject);   //object  
  20.        alert(typeof numberValue);    //number  
  21.        alert(numberObject instanceof Number);  //true  
  22.        alert(numberValue instanceof Number);   //false 

四.String类型
String 类型包含了三个属性和大量的可用内置方法。

 

String 也包含对象的通用方法,比如valueOf()、toLocaleString()和toString()方法,但这
些方法都返回字符串的基本值。

 

 

  
  
  
  
  1. var box = 'Mr.Lee';  
  2. alert(box.charAt(1)); //r  
  3. alert(box.charCodeAt(1)); //114  
  4. alert(box[1]); //r,通过数组方式截取 
PS:box[1]在IE 浏览器会显示undefined,所以使用时要慎重。

 

 

  
  
  
  
  1. var box = 'Mr.Lee';  
  2. alert(box.concat(' is '' Teacher ''!')); //Mr.Lee is Teacher !  一般使用“+”链接
  3. alert(box.slice(3)); //Lee  
  4. alert(box.slice(3,5)); //Le  
  5. alert(box.substring(3)); //Lee  
  6. alert(box.substring(3,5)); //Le  
  7. alert(box.substr(3)); //Lee  
  8. alert(box.substr(3,5)); //Lee  
  9. var box = 'Mr.Lee';  
  10. alert(box.slice(-3)); //Lee,6+(-3)=3 位开始  
  11. alert(box.substring(-3)); //Mr.Lee 负数返回全部  
  12. alert(box.substr(-3)); //Lee,6+(-3)=3 位开始  
  13. var box = 'Mr.Lee';  
  14. alert(box.slice(3, -1)); //Le 6+(-1)=5, (3,5)  
  15. alert(box.substring(3, -1)); //Mr. 第二参为负,直接转0,  
  16. //并且方法会把较小的数字提前,(0,3)  
  17. alert(box.substr(3, -1)); //'' 第二参数为负,直接转0 ,(3,0) 
PS:IE 的JavaScript 实现在处理向substr()方法传递负值的情况下存在问题,它会返回
原始字符串,使用时要切记。

 

 

  
  
  
  
  1. var box = 'Mr.Lee is Lee';  
  2. alert(box.indexOf('L')); //3  
  3. alert(box.indexOf('L', 5)); //10  
  4. alert(box.lastIndexOf('L')); //10  
  5. alert(box.lastIndexOf('L', 5)); //3,从指定的位置向前搜索 
PS:如果没有找到想要的字符串,则返回-1。

 

  
  
  
  
  1. //示例:找出全部的L  
  2. var box = 'Mr.Lee is Lee'//包含两个L 的字符串  
  3. var boxarr = []; //存放L 位置的数组  
  4. var pos = box.indexOf('L'); //先获取第一个L 的位置  
  5. while (pos > -1) { //如果位置大于-1,说明还存在L  
  6. boxarr.push(pos); //添加到数组  
  7. pos = box.indexOf('L', pos + 1); //从新赋值pos 目前的位置  
  8. }  
  9. alert(boxarr); //输出 

 

 

  
  
  
  
  1. var box = 'Mr.Lee is Lee';  
  2. alert(box.toLowerCase()); //全部小写  
  3. alert(box.toUpperCase()); //全部大写  
  4. alert(box.toLocaleLowerCase()); //  
  5. alert(box.toLocaleUpperCase()); // 
PS:只有几种语言(如土耳其语)具有地方特有的大小写本地性,一般来说,是否本
地化效果都是一致的。

 

正则表达式在字符串中的应用,在前面的章节已经详细探讨过,这里就不再赘述了。
以上中match()、replace()、serach()、split()在普通字符串中也可以使用。

 

  
  
  
  
  1. var box = 'Mr.Lee is Lee';  
  2. alert(box.match('L')); //找到L,返回L 否则返回null  
  3. alert(box.search('L')); //找到L 的位置,和indexOf 类型  
  4. alert(box.replace('L''Q')); //把L 替换成Q  
  5. alert(box.split(' ')); //以空格分割成字符串 

 

 

  
  
  
  
  1. alert(String.fromCharCode(76)); //L,输出Ascii 码对应值 

localeCompare(str1,str2)方法详解:比较两个字符串并返回以下值中的一个;
1.如果字符串在字母表中应该排在字符串参数之前,则返回一个负数。(多数-1)
2.如果字符串等于字符串参数,则返回0。
3.如果字符串在自附表中应该排在字符串参数之后,则返回一个正数。(多数1)

  
  
  
  
  1. var box = 'Lee';  
  2. alert(box.localeCompare('apple')); //1  
  3. alert(box.localeCompare('Lee')); //0  
  4. alert(box.localeCompare('zoo')); //-1 

 

以上是通过JS 生成一个html 标签,根据经验,没什么太大用处,做个了解。

 

  
  
  
  
  1. var box = 'Lee'//  
  2. alert(box.link('链接地址')); //超链接 

 

你可能感兴趣的:(基本包装类型)