时间:2022-08-24 09:39:44 | 栏目:JavaScript代码 | 点击:次
String
我们知道javascript 包括:number,string,boolean,null,undefined 基本类型和Object 类型。
在我的认知中,方法属性应该是对象才可以具有的。
var str="hello,world"; var s=str.subString(,);//ell alert(typeof(str)+":"+typeof(s));//string:string
从上面的返回类型来看,str是string 类型的。
再看下面的 如何使用全局对象声明一个字符串。
var c=new String(str); alert(typeof(c));//Object<br>alert(c.toString());//hello,world
那我能不能认为: 当我处理字符串的时候,
javascript编译器先把str字符串,使用new String(str);成了对象。然后在调用其处理办法,然后使用toString()方法返回个字符串呢。
临时对象的创建和销毁
从上面的实例我知道javascript在处理字符串、number,boolean 时就会创建临时对象,然后销毁。
var a = "hello,world"; var c = new String(a); //创建了string 对象。 c.len = ; alert(typeof (c));//object; alert(c.len);// /////////////////////////////////////////////////////////////////////// a.len=; alert(a.len);//undefined
a.len 编译器没有报错,是因为创建的临时对象操作完后,又销毁了。
==和===
a==c ;//true; a===c;//false; 字符串和object是不等的。