Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- ReferceCycle
- 면접을 위한 CS전공 지식 노트
- @escaping
- Reference Cycle
- Value Type Reference Type
- NavigationSearchBar
- SWIFT
- firebase
- CarouselCollectionview
- 프로그래머스
- Carousel CollectionView
- retain cycle
- 강한 참조 순환
- CoreData
- Array vs Linked List
- 테이블뷰 나누기
- class struct
- til
- tableview section별 다른 cell적용
- 면접을 위한 CS 전공 지식 노트 Tree
- Input Output
- wil
- 양궁대회
- UserDefaults
- coremotion
- TableView
- UIKit
- 자료구조
- 롤케이크 자르기
- TableView Section
Archives
- Today
- Total
목록제네릭 (1)
개발하는 동글 :]
[TIL],[Swift],[Generics(제네릭) 공부해 보기!][1]
1. 프로토콜 제약 func testFunc(num1:T, num2:T) -> Bool{ return num1 == num2 } testFunc(num1: 1, num2: 1) 이러한 제네릭 함수가 있다고 가정해 보자. 이 함수는 컴파일러에서 "Binary operator '==' cannot be applied to two 'T' operands"라는 에러를 알려준다 즉 이진 연산자 == 은 T라는 것에 적용할 수 없다는 것이다. 왜 이런 일이 발생할까? T는 Equatable 프로토콜을 채택하고 있지 않기 때문에 == 연산자를 사용할 수 없다. 그렇다면 문제를 해결하는 방법은 무엇일까? func testFunc(num1:T, num2:T) -> Bool{ return num1 == num2 } tes..
카테고리 없음
2023. 9. 20. 23:40