How many objects are created?? In java. | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 3

How many objects are created?? In java.

String s="hey"; String s1="hey"; String s2=new String("hey"); String s3 =new String("hey"); no. of objects. explain how? šŸ‘

19th Jan 2018, 4:19 AM
Yogesh Sharma
Yogesh Sharma - avatar
12 Respostas
+ 1
String s="hey";//object 1 String s1="hey";//referring to object 1 String s2=new String("hey");//object 2 String s3 =new String("hey");//object 3
19th Jan 2018, 7:50 AM
Yogesh Sharma
Yogesh Sharma - avatar
+ 4
3 Strings were created. s1 points to s in the SCP. s2 and s3 used 'new' without interning the String. Thus are created as separate Strings. Keep in mind this is not the number of Objects created. Strings use a char[] to keep track of each character (The value of the String). So, 2 Objects were created when s was. I think (not 100% sure), the char[]'s from s1, s2 and s3 would all use the same reference from the pooled s. So, 4 objects would be created in total. If I'm wrong about that happening then 6 objects would be created. 2 for each String, the String itself and the char[] it uses internally. There is also a possibility of local variables that create objects in the String classes constructor. Which could mean even more objects would be created. Although, those would be temporary.
19th Jan 2018, 5:00 AM
Rrestoring faith
Rrestoring faith - avatar
+ 2
unfortunately false, but near correct. let me help you, only s and s1 referring to same memory location. s2 and s3 are referring to be memory location that contains "hey".
19th Jan 2018, 5:33 AM
Yogesh Sharma
Yogesh Sharma - avatar
+ 2
No fella, and no 4 no 6 this is wrong answer.
19th Jan 2018, 5:56 AM
Yogesh Sharma
Yogesh Sharma - avatar
+ 2
correct answer is 3, Two with new keyword s2 and s3 and one which referred by s and s1.
19th Jan 2018, 6:41 AM
Yogesh Sharma
Yogesh Sharma - avatar
+ 2
Indeed, as part of making a String a character array is created - the constructor from the source code: publicĀ String()Ā { Ā Ā Ā Ā Ā Ā Ā Ā Ā this.offsetĀ =Ā 0; Ā Ā Ā Ā Ā Ā Ā Ā Ā this.countĀ =Ā 0; Ā Ā Ā Ā Ā Ā Ā Ā Ā this.valueĀ =Ā newĀ char[0]; Ā } http://grepcode.com/file/repository.grepcode.com/java/root/jdk/openjdk/6-b14/java/lang/String.java Other constructors create non-zero size arrays as required, so Rrestoring Faith is correct to say 3 Strings are created but more than 3 objects are created
19th Jan 2018, 7:43 AM
Dan Walker
Dan Walker - avatar
+ 2
this is right answer fella. only 3 object e using new and one when creating variable.
19th Jan 2018, 8:02 AM
Yogesh Sharma
Yogesh Sharma - avatar
+ 2
i don't know what backing array you are talking about. String is created in String pool.
19th Jan 2018, 8:07 AM
Yogesh Sharma
Yogesh Sharma - avatar
+ 2
I posted a link to the source code, behind the scenes a String has an array of characters, which is itself an object. Therefore any String object implicitly refers to an array object too
19th Jan 2018, 8:10 AM
Dan Walker
Dan Walker - avatar
+ 1
Yes 3 String objects are created :)
19th Jan 2018, 8:03 AM
Dan Walker
Dan Walker - avatar
0
(am i right?) number of instances = 6 number of objects = 4 string is immutable
19th Jan 2018, 5:54 AM
code learner
code learner - avatar
0
String s="hey";//object 1 and creates a backing array object 2 String s1="hey";//referring to object 1 String s2=new String("hey");//object 3 and creates a backing array object 4 String s3 =new String("hey");//object 5 and creates a backing array object 6 As previous answer said, in some cases the backing arrays might be the same reducing the number slightly
19th Jan 2018, 7:56 AM
Dan Walker
Dan Walker - avatar