[Dart 기초11] Set 타입

코덩이·2023년 5월 11일
0

Dart

목록 보기
11/18

Set

  • 중복이 없다.
void main(){

  // Set
  // 중복값이 들어갈 수 없다.
  final Set<String> names = {
    'Kodeongee',
    'Flutter',
    'Black Pink',
    'Flutter'
  };
  
  print(names);
  
  // 추가
  names.add('Jenny');
  
  print(names);
  
  // 삭제
  names.remove('Jenny');
  
  print(names);
  
  // 요소를 포함하고 있는지 검색
  print(names.contains('Flutter'));
    
}

실행결과

{Kodeongee, Flutter, Black Pink}
{Kodeongee, Flutter, Black Pink, Jenny}
{Kodeongee, Flutter, Black Pink}
true
profile
개발공부중

0개의 댓글