【简答题】Fill in the blanks with the expressions given below. Change the forms where necessary. 1) Steve said he _________________ having a good job, since business is bad nowadays. 2) Muhammad Ali is widely r...
【简答题】给出下面程序的运行结果。 class Outer{ int num = 3; // 外部类成员变量 class Inner { int num = 4; // 内部类成员变量 void show() { int num = 5; // 局部变量 System.out.println(num); System.out.println(this.num); System.out.println(Ou...