我自己没有尝试过,但是看一下代码模板定义。例如,foreach
代码模板在 Preferences -> Java -> Editor -> Templates 中定义如下:
定义如下:
for (${iterable_type} ${iterable_element} : ${iterable}) {
${cursor}
}
注意正在使用的变量,例如iterable_type
.
现在看看这个Eclipse 帮助页面。
那里有一个变量,${id:localVar(type[,type]*)}
其描述如下:
Evaluates to a local variable or parameter visible in the current scope that is a subtype of any of the given type. If no type is specified, any non-primitive local variable matches.
${array} is a shortcut for ${array:localVar(java.lang.Object[])}, but also matches arrays of primitive types.
${collection} is a shortcut for ${collection:localVar(java.util.Collection)}.
${iterable} is a shortcut for ${iterable:localVar(java.lang.Iterable)}, but also matches arrays.
相同的屏幕截图:
我相信,如果您想增加foreach
模板推断其变量的范围,您可能必须使用适当的变量编辑模板定义。
让我知道这是否有帮助。不幸的是,我之前没有深入研究过代码模板的编辑,所以无法给出具体的例子。