yoogail105 / KkokkoSwift

꼬리에 꼬리를 무는 swift 개념 정리
28 stars 0 forks source link

# 기본 자료 구조: 클래스, 구조체, 열거형 #41

Open yoogail105 opened 2 years ago

yoogail105 commented 2 years ago

swift의 기본 자료 구조 블럭: 클래스, 구조체, 열거형

class, struct의 공통점

// 키워드 + 이름 + {}
class testClass {
}
struct testStruct {
}
enum testEnum {
}

🔖 참고

yoogail105 commented 2 years ago

class, struct의 차이점

Class

Struct

yoogail105 commented 2 years ago

Call By Reference와 Call By Value

🔗 Call By Reference와 Call By Value