How to cast in Java? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How to cast in Java?

Hey all! I have a little question for all of you ^^ Scanner anniversaireJ = new Scanner (System.in); String dateJA = anniversaireJ.nextLine(); jourNaissance= jourNaissance.value Of (dateJA); Here is an extract of code do you fine any error? The debug said that I missed a « ; » but in fine i really don’t think so... Do you have any idea about this? If I well remember the process of cast is: TypeVar1 Var1 = ......; TypeVar2 Var2 = (TypeVar2) Var1; No? Anyway if you have any idea it would be a plesure to talk about that with u ;) Thanks! https://code.sololearn.com/cUb0OHFpNxaY/?ref=app

18th Jul 2018, 8:42 PM
SoulSlap
SoulSlap - avatar
28 Answers
+ 1
After you change value Of to valueOf, there are new errors. Those are type problems
18th Jul 2018, 10:22 PM
Jonas Schröter
Jonas Schröter - avatar
+ 1
So, what Integer.parseInt() does is converting a string such as "98" to an int, 98.
18th Jul 2018, 10:30 PM
Jonas Schröter
Jonas Schröter - avatar
+ 1
ok i will try that thanks!
18th Jul 2018, 10:39 PM
SoulSlap
SoulSlap - avatar
+ 1
I could write the code for you easily, but that wouldn't be helpful, cause you have to learn it haha.
18th Jul 2018, 10:51 PM
Jonas Schröter
Jonas Schröter - avatar
+ 1
String dateJA = anniversaire.nextLine(); Byte.parseByte(dateJA); jourNaissance= dateJA; Here a Problem. As I said, parseByte has to assigned to a variable, here I would say, to jourNaissance.
18th Jul 2018, 10:56 PM
Jonas Schröter
Jonas Schröter - avatar
+ 1
So, the Scanner itself is not important, but it's methods. At the moment, you use nextLine() which returns a String. nextByte() should work out just fine.
18th Jul 2018, 11:02 PM
Jonas Schröter
Jonas Schröter - avatar
+ 1
Done ! 🙄 Ok i understand "Line" is for string object only... Thank you very much ! 🙏 So i suppose it's nextShort fort Short, nextLong for Long etc...
18th Jul 2018, 11:17 PM
SoulSlap
SoulSlap - avatar
+ 1
Exactly
18th Jul 2018, 11:18 PM
Jonas Schröter
Jonas Schröter - avatar
0
First, I would recommend to put your code into code playground, so we can check it out. Second, you only can cast types which are compatible, such as you can cast everything to Object. What's not possible is for example casting ints to String. For such problems you have to use methods as valueOf Third, I'm not sure if it's a typing mistake,but you wrote value Of() instead of valueOf()
18th Jul 2018, 10:11 PM
Jonas Schröter
Jonas Schröter - avatar
0
here it is ok i’ll try that
18th Jul 2018, 10:20 PM
SoulSlap
SoulSlap - avatar
0
ok so I’ve tried with ValueOf instead of Value Of and nothing happens.... :/ Yeah of course convert an int into an object String is not that logic but in the other way it seems to be a little more logic right?
18th Jul 2018, 10:22 PM
SoulSlap
SoulSlap - avatar
0
So you wanna convert an int to String or the other way around?
18th Jul 2018, 10:23 PM
Jonas Schröter
Jonas Schröter - avatar
0
Look at this: int to String: String.valueOf(yourInt); String to int: Integer.parseInt(yourString);
18th Jul 2018, 10:25 PM
Jonas Schröter
Jonas Schröter - avatar
0
I try to create a Scanner in byte in fact
18th Jul 2018, 10:25 PM
SoulSlap
SoulSlap - avatar
0
can u just explain your code please? i try to understand it but « Integer.parselnt() » is unknown foor me... :/
18th Jul 2018, 10:27 PM
SoulSlap
SoulSlap - avatar
0
But that's not that important as you use byte
18th Jul 2018, 10:31 PM
Jonas Schröter
Jonas Schröter - avatar
0
Haha i’ve forgot that ^^ so Byte.parseByte() exist? or there is no way and i’ve to convert my varriable into an Int?
18th Jul 2018, 10:34 PM
SoulSlap
SoulSlap - avatar
0
A few problems: Use Byte.parseByte(theString) to get a byte value from a string Create only one Scanner object and just call .nextLine() two or more times ...
18th Jul 2018, 10:35 PM
Jonas Schröter
Jonas Schröter - avatar
0
Still 1 error in output but it’s better!
18th Jul 2018, 10:46 PM
SoulSlap
SoulSlap - avatar
0
Just delete line 19
18th Jul 2018, 10:48 PM
Jonas Schröter
Jonas Schröter - avatar