mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-28 06:21:43 +00:00
24 lines
528 B
Java
24 lines
528 B
Java
// version 8:
|
|
import lombok.experimental.ExtensionMethod;
|
|
|
|
@ExtensionMethod(ExtensionMethodVarargs.Extensions.class)
|
|
class ExtensionMethodVarargs {
|
|
public void test() {
|
|
Long l1 = 1l;
|
|
long l2 = 1l;
|
|
Integer i1 = 1;
|
|
int i2 = 1;
|
|
|
|
"%d %d %d %d".format(l1, l2, i1, i2);
|
|
"%d".format(l1);
|
|
"".format(new Integer[]{1,2});
|
|
"".format(new Integer[]{1,2}, new Integer[]{1,2});
|
|
}
|
|
|
|
static class Extensions {
|
|
public static String format(String string, Object... params) {
|
|
return String.format(string, params);
|
|
}
|
|
}
|
|
}
|