假设我有一堂课
class myClass {
var someValue1: Double = 1.1
var someValue2: Double = 2.0
}
我需要写什么,当将一个对象转换为字符串时,它会给出一个值,例如someValue2
print("\(instanceOfMyClass)") // Output: 2.0
假设我有一堂课
class myClass {
var someValue1: Double = 1.1
var someValue2: Double = 2.0
}
我需要写什么,当将一个对象转换为字符串时,它会给出一个值,例如someValue2
print("\(instanceOfMyClass)") // Output: 2.0
需要从协议继承
CustomStringConvertible
并设置
description
:https://developer.apple.com/documentation/swift/customstringconvertible