java中String类的笔试面试题含答案

时间:2024-01-10 23:14:59
【文件属性】:

文件名称:java中String类的笔试面试题含答案

文件大小:90KB

文件格式:PDF

更新时间:2024-01-10 23:14:59

IN jav java

java中String类的笔试面试题含答案 1.下面程序的运行结果是()(选择一项) String str1=”hello”; String str2=new String(“hello”); System.out.println(str1==str2); A. true B. false C. hello D. he 答案:B 分析:str1没有使用new关键字,在堆中没有开辟空间,其值”hello”在常量池中,str2使用new关键字创建了一个对象,在堆中开辟了空间,”==”比较的是对象的引用,即内存地址,所以str1与str2两个对象的内存地址是不相同的 2.Java语言中,Strin


网友评论