Structures and Classes - The Swift Programming Language (Swift 5.6)

Structures and Classes

Structure와 class는 프로그램 코드의 구성요소가 되는 광범위하고 유연한 구조이다.

Comparing Structures and Classes

var numberOfLegs = ["spider": 8, "ant": 6, "cat": 4]
numberOfLegs["bird"] = 2  // [,] 는 subsctipt brackets 라고 부른다

Class만 가진 추가 기능(struct엔 없음)