...
Code Block | ||
---|---|---|
| ||
ReturnType1 suspect1(Object... args) { } <T><T> ReturnType2 suspect2(T... args) { } |
...
Wiki Markup |
---|
\[[Sun 06|AA. Java References#Sun 06]\] [varargs|http://java.sun.com/j2se/1.5.0/docs/guide/language/varargs.html] \[[Bloch 08|AA. Java References#Bloch 08]\] Item 42: ""Use varargs judiciously"" \[[Steinberg 05|AA. Java References#Steinberg 05]\] ""Using the Varargs Language Feature"" |
...
DCL07-J. Ensure failure atomicity by declaring class and instance variables final and initializing immediately 03. Declarations and Initialization (DCL) DCL30-J. Do not attempt to assign to the loop variable in an enhanced for loop