如果我将 fore-each-template 用于以下值,则使用
- foreCtrl+SpaceEnterEnter 在第 5 行
- foreCtrl+SpaceEnterTabTabDownEnter在第 8 行
- foreCtrl+SpaceEnterTabTabDownDownEnter在第 11 行
将生成以下代码(由 Eclipse 4.2 生成)
01 public static String[] c = new String[]{"hi"};
02 public static void test() {
03 String[] a = new String[]{"hi"};
04 int[] b = new int[]{2};
05 for (String string : a) {
06 // 1. fine
07 }
08 for (int i : b) {
09 // 2. fine too
10 }
11 for (iterable_type iterable_element : c) {
12 // 3. not resolved?
13 }
14 }
现在的问题:
- 为什么数组不能
c
解析它的数组类型和名称? - 这可能是 Eclipse 中的错误吗?