多选题 Given the current directory is bigApp, and the directory structure:
bigApp
|-- classes
|-- Cloned.class
|-- com
|-- Cloned.class
|-- wickedlysmart
|-- Cloned.class
And the three files:
public class Cloned {
public static voidmain(String[] args) {System.out.println("classes"); }
}
public class Cloned {
public static void main(String[] args) {System.out.println("com"); }
}
public class Cloned {
public static void main(String[] args) {System.out.println("ws"); }
}
Have been compiled into the classes, com, and wickedlysmart directories, respectively. Which will produce the output "ws"? (Choose all that apply.)
【正确答案】 B、C、E
【答案解析】