|
|
От: |
Cheblin2
|
https://github.com/cheblin |
| Дата: | 21.05.21 05:57 | ||
| Оценка: | |||
static void foo(byte... values) {}
public static void main(String[] args) throws Exception {
foo(1, 2, 3, 4);
foo(new byte[]{1, 2, 3, 4});
}