https://www.cnblogs.com/hoganhome/p/14498332.html
一.
public static void main(String[] args) {
Thread t = new Thread() {
public void run() {
my360DW();
}
};
t.run();
System.out.print("DW");
}
static void my360DW() {
System.out.print("360");
}
:
360DW
网友评论