Станом на Xcode 7 бети 5 (Swift версія 2) тепер можна надрукувати імена типів і випадки перерахувань за замовчуванням з використанням print(_:)
або зверненим в String
використанні String
«s init(_:)
синтаксис ініціалізації або рядки інтерполяції. Тож для вашого прикладу:
enum City: Int {
case Melbourne = 1, Chelyabinsk, Bursa
}
let city = City.Melbourne
print(city)
// prints "Melbourne"
let cityName = "\(city)" // or `let cityName = String(city)`
// cityName contains "Melbourne"
Тому більше немає необхідності визначати та підтримувати функцію зручності, яка вмикає кожен випадок, щоб повернути рядковий літерал. Крім того, це працює автоматично для будь-якого перерахунку, навіть якщо не вказано тип необробленого значення.
debugPrint(_:)
& String(reflecting:)
може використовуватися для повноцінного імені:
debugPrint(city)
// prints "App.City.Melbourne" (or similar, depending on the full scope)
let cityDebugName = String(reflecting: city)
// cityDebugName contains "App.City.Melbourne"
Зауважте, що ви можете налаштувати те, що друкується у кожному з цих сценаріїв:
extension City: CustomStringConvertible {
var description: String {
return "City \(rawValue)"
}
}
print(city)
// prints "City 1"
extension City: CustomDebugStringConvertible {
var debugDescription: String {
return "City (rawValue: \(rawValue))"
}
}
debugPrint(city)
// prints "City (rawValue: 1)"
(Я не знайшов способу ввести це значення "за замовчуванням", наприклад, надрукувати "Місто - Мельбурн", не вдаючись до заяви переключення. Використання \(self)
при реалізації description
/ debugDescription
викликає нескінченну рекурсію.)
У коментарях вище String
' init(_:)
і init(reflecting:)
ініціалізатори описують, що саме друкується, залежно від того, що відповідає відображений тип:
extension String {
/// Initialize `self` with the textual representation of `instance`.
///
/// * If `T` conforms to `Streamable`, the result is obtained by
/// calling `instance.writeTo(s)` on an empty string s.
/// * Otherwise, if `T` conforms to `CustomStringConvertible`, the
/// result is `instance`'s `description`
/// * Otherwise, if `T` conforms to `CustomDebugStringConvertible`,
/// the result is `instance`'s `debugDescription`
/// * Otherwise, an unspecified result is supplied automatically by
/// the Swift standard library.
///
/// - SeeAlso: `String.init<T>(reflecting: T)`
public init<T>(_ instance: T)
/// Initialize `self` with a detailed textual representation of
/// `subject`, suitable for debugging.
///
/// * If `T` conforms to `CustomDebugStringConvertible`, the result
/// is `subject`'s `debugDescription`.
///
/// * Otherwise, if `T` conforms to `CustomStringConvertible`, the result
/// is `subject`'s `description`.
///
/// * Otherwise, if `T` conforms to `Streamable`, the result is
/// obtained by calling `subject.writeTo(s)` on an empty string s.
///
/// * Otherwise, an unspecified result is supplied automatically by
/// the Swift standard library.
///
/// - SeeAlso: `String.init<T>(T)`
public init<T>(reflecting subject: T)
}
Інформацію про цю зміну див. У примітках
до випуску .
print(enum)
ви можете використовуватиString(enum)