+ 4
Casting String's
how do I cast a string with a value of an integer to int
2 odpowiedzi
+ 5
method 1:
int a = Integer.valueOf("72")
method 2:
int b = Integer.parseInt("234");
+ 3
thanks!!!
how do I cast a string with a value of an integer to int