일정하지 않은 개수의 파라미터 (Arbitrary Number of Arguments )
일정한 형의 변수를 여러 개 전달해야 할 때 사용한다.
메소드 호출시, 일반 파라미터 처럼 넘기고
메소드에서 받은 파라미터는 배열로 사용한다.
public class Test{
public static void main(String[] args) {
TestClass tc= new TestClass();
}
}
class TestClass{
public void test(String... strs) {
System.out.println(strs[0]);// test1
System.out.println(strs[1]); // test2
}
}
728x90
반응형
'Back-end > JAVA & Spring' 카테고리의 다른 글
[java] 임시 비밀번호 생성 Random / SecureRandom /RandomStringUtils) (0) | 2022.03.03 |
---|---|
PMD - Programming Mistake Detector (0) | 2022.01.06 |
[Spring] @PathVariable 사용법 (0) | 2021.12.28 |
@RequestParam과 @PathVariable? (0) | 2021.12.28 |
GetMapping 어노테이션으로 다중맵핑하기 (0) | 2021.12.28 |
댓글