https://docs.oracle.com/javase/tutorial/java/javaOO/arguments.html

매개변수의 수가 가변일때

생략 부호(ellipsis, three dots, …)를 사용한다.

int print(String ... args) { ... }

print("가");
print("가", "나");
print("가", "나", "다");