[Dart] Map

Minseok Seo·2022년 11월 3일
0

선언하기

Map<Key 타입,Value 타입> 변수이름 = {
	Key1 : Value1,
    Key2 : Value2,
    Key3 : Value3
}

데이터 참조

List와 마찬가지로 대괄호([])를 사용하여 참조한다

Map<String, String> fruits = {
	'Apple' : '사과'
};

print(fruits['Apple']); // 사과

데이터 추가

  1. 대괄호([])를 이용하는 방식
fruits['Melon'] = '멜론';
  1. addAll 메소드를 사용하는 방식
fruits.addAll({
	'Melon' : '멜론'
})

데이터 삭제

remove 메소드를 사용한다.

Map<String, String> fruits = {
	'Apple' : '사과'
};

fruits.remove('Apple');
print(fruits); // {}

0개의 댓글