下面程序的运行结果是什么?

下面程序的运行结果是?
public class Test {
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("信用卡");
}

}
A:招商银行信用卡
B:信用卡招商银行
C:信用卡招商银行,招商银行信用卡都有可能
D:运行报错

用电脑敲一遍他不香么,既能巩固知识还能得到答案,还可以多问自己几个为什么然后去求证解析。