Given:<br /> 11.String test = "This is a test";<br /> 12.String[] tokens = test.split("\s");<br /> 13.System.out.println(tokens.length);<br /> What is the result?()
A、0
B、1
C、4
D、Compilation fails.