Download this file
9 lines (9 with data), 225 Bytes
| public class TestCoerceArray {
public static String f(TestCoerceArray[] ar) {
StringBuffer buf = new StringBuffer();
for(int i=0; i<ar.length; i++) {
buf.append(ar[i].toString());
}
return buf.toString();
}
}
|
×
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.