第三十二道Java小问题

public class Test {
	public static void main(String[] args) throws ClassNotFoundException {
		Class<Integer> c = (Class<Integer>) Class.forName("java.lang.Double");
		System.out.println(c);

	}
}

 请问以上程序输出是:

你可能感兴趣的:(java,C++,c,C#)