码迷,mamicode.com
首页 > 其他好文 > 详细

简单类型对象 String

时间:2016-01-28 10:36:05      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

简单值不是对象,因此也没有属性方法,因此运行下面代码时
 
var s1 = “some text”;
var s2 = s1.substring(2);
 
实际上是运行在read模式,字符串的值会被直接从内存读取,会触发如下步骤
 
- Create an instance of the String type(new String())
 
- Call the specified method on the instance
 
- Destroy the instance

因此在字符串,数字,布尔值上调用方法都会按上面步骤执行

简单类型对象 String

标签:

原文地址:http://www.cnblogs.com/chuangweili/p/5165260.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!