代码如下:
public class Demo16 { public static void main(String[] args) { String[] strArr = { "Mike", "jimmy", "tommy", "jerry" }; for (String str : strArr) { System.out.println(str); } }}