This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes Programmer Certification (SCJP/OCPJP) and the fly likes A little confuse with String Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Certification » Programmer Certification (SCJP/OCPJP)
Reply Bookmark "A little confuse with String" Watch "A little confuse with String" New topic
Author

A little confuse with String

Kay Liew
Ranch Hand

Joined: Dec 26, 2003
Posts: 112
KB books stated in page 357.

x.replace('a','A');
System.out.println("x = " + x); //the output is still: x = Java

I got trouble in the //comment. I think the original 'Java" will turns into 'JAvA".

Isn't that so ?

Thanks,
k


Unity can only be manifested by the Binary. Unity itself and the idea of Unity are already two.
Chris Allen
Ranch Hand

Joined: Feb 01, 2003
Posts: 127
Originally posted by Kay Liew:
KB books stated in page 357.

x.replace('a','A');
System.out.println("x = " + x); //the output is still: x = Java

I got trouble in the //comment. I think the original 'Java" will turns into 'JAvA".

Isn't that so ?

Thanks,
k


Look at what the x.replace('a','A') statement is really doing. Is it assigning the value it gets from the replace function to the string x or is it just performing the action and throwing the value away?
Kay Liew
Ranch Hand

Joined: Dec 26, 2003
Posts: 112
ok ok .. i looked too far

I was thinking of x.replace('a','A'); as x=x.replace('a','A'); .

k
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: A little confuse with String
 
Similar Threads
How to implement the wall follower algorithm in java?
How to convert null to zero in java
While loop - Head's First Java example
Head First Java - Is over complicated bad?
ExceptionInInitializerError doubt