본문 바로가기
Programing Language/Java

[Java] 다중 변수 선언

by pcm9881 2023. 9. 20.

다중 선언

// int
int i = 1, j = 2;

// String
String name = "", address = "";

// List<Map<String,Object>> 
List<Map<String,Object>> items = new ArrayList<>(), nodes = new ArrayList<>();

 

다중 할당

// String
String first, second, third;
first = second = third = "다중할당";

// List<Map<String,Object>> 
List<Map<String,Object>> items, nodes;
items = nodes = new ArrayList<>();
728x90

댓글