Please explain Common String Mistake in the code below/question in Bold: public class StringMistakeDemo { public static void main(String[] args) { String a = "Roux"; String b = "Roux"; String c = new String("Roux"); /* * Number 1 * Consider the output from the this block of code. * Which line causes the "false"? * Why are the last two lines different? */ System.out.println(); System.out.println("Roux" == "Roux"); //comparing two strings System.out.println(a == b); //comparing two string variables System.out.println(a == c); //comparing two other string variables System.out.println(a.equals(c));//using the string class method "equals" /* * Number 2 * "identityHashCode" provides a numeric signature that includes the * memory location for the variable. * What does the following output tell you about how Java stores strings? */ System.out.println(); System.out.println(Integer.toHexString(System.identityHashCode(a))); System.out.println(Integer.toHexString(System.identityHashCode(b))); System.out.println(Integer.toHexString(System.identityHashCode(c))); /* * Number 3 * What happens in memory when you modify the string? */ System.out.println(); a = a + b; System.out.println(a); System.out.println(Integer.toHexString(System.identityHashCode(a))); System.out.println(Integer.toHexString(System.identityHashCode(b))); System.out.println(Integer.toHexString(System.identityHashCode(c))); /* * Number 4 * When would you use the equality operator "==" and .equals? */ } }

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Please explain Common String Mistake in the code below/question in Bold:

 

public class StringMistakeDemo
{
public static void main(String[] args) {
String a = "Roux";
String b = "Roux";
String c = new String("Roux");

/*
* Number 1
* Consider the output from the this block of code.
* Which line causes the "false"?
* Why are the last two lines different?
*/

System.out.println();
System.out.println("Roux" == "Roux"); //comparing two strings
System.out.println(a == b); //comparing two string variables
System.out.println(a == c); //comparing two other string variables
System.out.println(a.equals(c));//using the string class method "equals"

/*
* Number 2
* "identityHashCode" provides a numeric signature that includes the
* memory location for the variable.
* What does the following output tell you about how Java stores strings?
*/

System.out.println();
System.out.println(Integer.toHexString(System.identityHashCode(a)));
System.out.println(Integer.toHexString(System.identityHashCode(b)));
System.out.println(Integer.toHexString(System.identityHashCode(c)));

/*
* Number 3
* What happens in memory when you modify the string?
*/

System.out.println();
a = a + b;
System.out.println(a);
System.out.println(Integer.toHexString(System.identityHashCode(a)));
System.out.println(Integer.toHexString(System.identityHashCode(b)));
System.out.println(Integer.toHexString(System.identityHashCode(c)));

/*
* Number 4
* When would you use the equality operator "==" and .equals?
*/
}
}

Expert Solution
Step 1

String a = "Roux";
String b = "Roux";
String c = new String("Roux");

a and b variables both point to the same string constant kept in the constant string memory pool of heap data.

As c is created using new variable so c points to a completely different and new object that holds the string.

So a and b point to the same object inn heap and since == checks for reference equality so a==b gives true
"Roux" == "Roux" gives true for same reason.

a==c gives false as they are both pointing to different objects.

a.equals(c) gives true as .equals() method is overridden for String class in java and thus it compares string literals regardless of their data location.

trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps

Blurred answer
Similar questions
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education