Introduction
Here is the source code for Main.java
Source
public class Main {
public static void main(String[] args) {
int i = 50;
String str = new Integer(i).toString();
System.out.println(str + " : " + new Integer(i).toString().getClass());
}
}
//50 : class java.lang.String