根据下面这个程序的内容,判断哪些描述是正确的:( ) publi...
发布于 2022-03-03 16:43:32
根据下面这个程序的内容,判断哪些描述是正确的:( )
public class Test { public static void main(String args[]) { String s = "tommy" Object o = s sayHello(o) //语句1 sayHello(s) //语句2 } public static void sayHello(String to) { System.out.println(String.format("Hello, %s", to)) } public static void sayHello(Object to) { System.out.println(String.format("Welcome, %s", to)) } }
登录后免费查看答案
关注者
0
被浏览
18