多项选择题
A.a++;
B.b++;
C.c++;
D.d++;
E.e++;
单项选择题 If this source code is contained in a file called SmallProg.java, what command should be used to compile it using the JDK?() public class SmallProg { public static void main(String args[]) { System.out.println("Good luck!"); } }
单项选择题 HowdoobjectspassmessagesinJava?()
多项选择题 Given that Thing is a class, how many objects and reference variables are created by the following code?() Thing item, stuff; item = new Thing(); Thing entity = new Thing();