题目内容
Analyze the following code: class Test { public static void main(String[] args) {System.out.println(xMethod((double)5));} public static int xMethod(int n) {System.out.println("int");return n;} public static long xMethod(long n) {System.out.println("long");return n;} }
查看答案
搜索结果不匹配?点我反馈