This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
I'm a beginner and I need help! I would like to change a string into an integer. I've tried int number = (int) j;//j is the string here. I've tried other things and they don't work either. Surfing the web hasn't been helping me either. Hope someone can help! thanks.
Richard Mack
Greenhorn
Joined: Oct 19, 2000
Posts: 3
posted
0
In Java, Strings are object references. It is illegal to cast/convert an object reference (J) to a primative (number). What are you trying to accomplish this for?
Siobhan Murphy
Ranch Hand
Joined: Oct 19, 2000
Posts: 72
posted
0
Try the following: String j = "2024"; int i = Integer.parseInt(j);
Yasmeen G
Greenhorn
Joined: Oct 19, 2000
Posts: 2
posted
0
Thanks for the help! It worked. I was just constructing a simple program.