当前位置:网站首页>String abc = new String(“abc“),到底创建了几个对象
String abc = new String(“abc“),到底创建了几个对象
2022-07-06 09:20:00 【快醒醒鸭今天你编程了吗?】
String abc = new String("abc");
咱们先不着急回答这个到底创建了几个人对象,先分析:
首先这个代码里面有一个‘new’关键字,我们大概都听过凡是new出来的都是放在堆中的,这个关键字是在程序运行的时候,根据已经加载的系统类String在堆里面实例化一个字符串对象,然后在这个String的构造方法里面传递了一个“abc”的字符串,因为String里面的字符串成员变量底层是用final修饰的,所以它是一个字符串常量,所以JVM会拿字面量“abc”去字符串常量池里面去找,对应它的一个String的对象引用,如果拿不到就会在堆内存里面去创建一个“abc”的String对象,并且把引用保存到字符串常量池里面,并且把引用保存到字符串常量池里面,以后如果再有字面量“abc”的定义,因为字符串常量池里面,已经存在字面量“abc”的一个引用,所以只需要从常量池中获取对应的引用就可以了不需要在去创建。
对于这个问题我认为有两个
- 如果”abc“这个字符串常量不存在,则需要去创建两个对象,分别是‘abc’这个字符串常量,以及‘new String’这个实例对象
- 如果‘abc’这字符串常量存在,则只会创建一个对象,就是String这个对象。
以上就是这个问题的全部解释,主要考察的对JVM里面运行时内存划分和JVM常量池的理解足够深刻才能回答出。
边栏推荐
- FileInputStream和BufferedInputStream的比较
- JS interview questions (I)
- First acquaintance with C language (Part 1)
- Network layer 7 protocol
- First acquaintance with C language (Part 2)
- 162. Find peak - binary search
- String class
- Application architecture of large live broadcast platform
- Questions and answers of "signal and system" in the first semester of the 22nd academic year of Xi'an University of Electronic Science and technology
- 【九阳神功】2017复旦大学应用统计真题+解析
猜你喜欢
Conceptual model design of the 2022 database of tyut Taiyuan University of Technology
(超详细onenet TCP协议接入)arduino+esp8266-01s接入物联网平台,上传实时采集数据/TCP透传(以及lua脚本如何获取和编写)
MPLS experiment
Alibaba cloud side: underlying details in concurrent scenarios - pseudo sharing
3. Number guessing game
One article to get UDP and TCP high-frequency interview questions!
Iterable、Collection、List 的常见方法签名以及含义
arduino+水位传感器+led显示+蜂鸣器报警
西安电子科技大学22学年上学期《基础实验》试题及答案
IPv6 experiment
随机推荐
Data manipulation language (DML)
西安电子科技大学22学年上学期《射频电路基础》试题及答案
Arduino+ water level sensor +led display + buzzer alarm
初识C语言(下)
TYUT太原理工大学2022软工导论考试题型大纲
arduino+DS18B20温度传感器(蜂鸣器报警)+LCD1602显示(IIC驱动)
Interview Essentials: talk about the various implementations of distributed locks!
Inheritance and polymorphism (Part 2)
E-R graph to relational model of the 2022 database of tyut Taiyuan University of Technology
TYUT太原理工大学2022数据库大题之数据库操作
【九阳神功】2019复旦大学应用统计真题+解析
View UI Plus 发布 1.3.0 版本,新增 Space、$ImagePreview 组件
MySQL limit x, -1 doesn't work, -1 does not work, and an error is reported
CorelDRAW plug-in -- GMS plug-in development -- Introduction to VBA -- GMS plug-in installation -- Security -- macro Manager -- CDR plug-in (I)
更改VS主题及设置背景图片
3.C语言用代数余子式计算行列式
西安电子科技大学22学年上学期《信号与系统》试题及答案
Alibaba cloud microservices (IV) service mesh overview and instance istio
Wei Pai: the product is applauded, but why is the sales volume still frustrated
20220211-CTF-MISC-006-pure_ Color (use of stegsolve tool) -007 Aesop_ Secret (AES decryption)