iOS 16, Xcode 14.01, Swift 5, UIKit 환경에서 진행했습니다. func address(of object: UnsafeRawPointer) -> String { let address = Int(bitPattern: object) return String(format: "%p", address) } var dog: Animal = Animal() // 객체 선언 및 초기화 address(of: &dog) 객체가 어느 메모리를 할당하고 싶은지 찾고 싶을 때 위와 같은 함수와 호출을 통해 메모리 주소 값을 확인할 수 있다.