多选题 Given:
1. import java.util.*;
2. public class LogSplitter {
3. public static void main(String[] args) {
4. for(int x = i; x < args.length; x++)
5. System.out.print(args[0] .split(args[x]) .length + " ");
6. } }
And the command-line invocation:
java LogSplitter "x1 23 y #" "/d" "/s" "/w"
What is the result?
【正确答案】 A
【答案解析】