Tuesday, July 23, 2019

java - method to convert from a string to an int











I am trying to write a method that returns an int from a String variable.
My method is:



public int returnInt(String s) {
}

Answer



You can use Integer.valueOf(String) for this



No comments:

Post a Comment