Notice
Recent Posts
Recent Comments
Link
투케이2K
452. (ios/swift5) [OrderedSet] 컬렉션 및 구조체 조작 라이브러리 사용해 equals 객체 동일 여부 비교 수행 본문
IOS
452. (ios/swift5) [OrderedSet] 컬렉션 및 구조체 조작 라이브러리 사용해 equals 객체 동일 여부 비교 수행
투케이2K 2024. 4. 12. 18:59[개발 환경 설정]
개발 툴 : XCODE
개발 언어 : SWIFT5
[소스 코드]
// -----------------------------------------------------------------------------------------
// MARK: - [테스트 메인 함수 정의 실시]
// -----------------------------------------------------------------------------------------
func testMain() {
S_Log._D_(description: "테스트 함수 시작 실시", data: nil)
/*
// -------------------------------------------------------
[요약 설명]
// -------------------------------------------------------
1. OrderedSet 라이브러리는 Ios 에서 간편하게 컬렉션 및 구조체를 조작할 수 있는 라이브러리입니다
// -------------------------------------------------------
2. 필요 import : import OrderedSet
// -------------------------------------------------------
3. OrderedSet 라이브러리 Git 공식 사이트 : https://github.com/robbiehanson/CocoaAsyncSocket.git
// -------------------------------------------------------
4. OrderedSet 라이브러리 문법 참고 사이트 : https://github.com/apple/swift-collections/blob/main/Documentation/OrderedSet.md
// -------------------------------------------------------
5. 라이브러리 추가 방법 참고 사이트 : https://blog.naver.com/kkh0977/223413705521
// -------------------------------------------------------
*/
// [로직 처리 실시]
DispatchQueue.main.async {
// [초기 변수 선언]
let a: OrderedSet = [1, 2, 3, 4]
let b: OrderedSet = [4, 3, 2, 1]
let c: OrderedSet = [1, 2, 3, 4]
// [equals 사용해 두객체 비교 수행] : [데이터 정렬 순서까지 확인]
var one = a == b
var two = a == c
// [로그 출력]
S_Log._D_(description: "로그 출력 확인", data: [
"one :: \(one)",
"two :: \(two)"
])
}
}
[결과 출력]
반응형
'IOS' 카테고리의 다른 글
Comments