Map<Key 타입,Value 타입> 변수이름 = {
Key1 : Value1,
Key2 : Value2,
Key3 : Value3
}
List와 마찬가지로 대괄호([]
)를 사용하여 참조한다
Map<String, String> fruits = {
'Apple' : '사과'
};
print(fruits['Apple']); // 사과
[]
)를 이용하는 방식fruits['Melon'] = '멜론';
addAll
메소드를 사용하는 방식fruits.addAll({
'Melon' : '멜론'
})
remove
메소드를 사용한다.
Map<String, String> fruits = {
'Apple' : '사과'
};
fruits.remove('Apple');
print(fruits); // {}