강의

멘토링

커뮤니티

Inflearn Community Q&A

heco's profile image
heco

asked

[Code Factory] [Introduction] Completely master the Dart language in 4 hours

Dart #3 Functional Programming

toSet(), Set.of(), Set.from() 차이점

Resolved

Written on

·

558

0

toSet(), Set.of(), Set.from() 차이점이 있나요?

flutter함수형-프로그래밍객체지향

Answer 1

1

codefactory님의 프로필 이미지
codefactory
Instructor

안녕하세요!

결과값에대한 질문이라면 차이가 없습니다!

다만 .toSet()은 함수이고 Set.of(), Set.from()은 팩토리 생성자입니다!

추가로 Dart 팀에서는 Set.of() 대신 Set.from() 사용을 권장하고 있습니다. (나중에 나온 문법입니다)

감사합니다!

heco님의 프로필 이미지
heco
Questioner

감사합니다!

heco's profile image
heco

asked

Ask a question