[Dart] Set

Minseok Seo·2022년 11월 3일
0

List 와 비슷하지만, 중복을 허용하지 않는다.

선언하기

Set<String> fruits = {
	'Apple',
    'Strawberry',
    'Melon'
};

중복 비허용

Set<String> fruits = {
	'Apple',
    'Strawberry',
    'Melon',
    'Apple' // 중복
};

print(fruits); // {Apple, Strawberry, Melon}

0개의 댓글