Dan Hansen

Greenhorn
+ Follow
since Dec 13, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Dan Hansen

So "Dan Hansen" and "DAN HANSEN" is considered to be equal?

Originally posted by Sanjeev Kumar Singh:
However the methods substring and toUpperCase will not made the new String always.



Could you please explain why?
Will all of these cause a new string object to be made?

String name = �Dan�;
name = name + � Hansen�;
name = name.substring(3, 5);
name = name.toUpperCase();

Or how many of them will?
In Sierra Bates page 650, there is an example of illegal code (Popcorn and Food).

My question:
Is there a way to call the sizzle method from popIt method?
Or, how can I call the sizzle method outside the Food class?

Regards
Dan