|
In wrapperToString, where do you define "sresult"? Also, you don't define the method "toString" anywhere. As an Object, it inherits a "toString()" method, one that doesn't take any arguments.
Additionally, you don't need to do all those method calls just to turn a String into an Integer or Double. Both of those objects take a String for a constructor.
|