下面程序的运行结果是? public static void ma...
public static void main(String args[]) { Thread t = new Thread() { public void run() { pong() } } t.run() System.out.print("招商银行") } static void pong() { System.out.print("信用卡") }
public static void main(String args[]) { Thread t = new Thread() { public void run() { pong() } } t.run() System.out.print("招商银行") } static void pong() { System.out.print("信用卡") }