Począwszy od Xcode 7 beta 5 (Swift Version 2) można teraz wydrukować nazwy typu i przypadki enum domyślnie przy użyciu print(_:)
, lub przekonwertować do String
korzystania String
„s init(_:)
składni inicjator lub ciąg interpolacji. Na przykład:
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"
Nie ma więc już potrzeby definiowania i utrzymywania wygodnej funkcji, która włącza każdy przypadek, aby zwrócić literał ciągu. Ponadto działa to automatycznie dla każdego wyliczenia, nawet jeśli nie określono typu wartości surowej.
debugPrint(_:)
& String(reflecting:)
może służyć do w pełni kwalifikowanej nazwy:
debugPrint(city)
// prints "App.City.Melbourne" (or similar, depending on the full scope)
let cityDebugName = String(reflecting: city)
// cityDebugName contains "App.City.Melbourne"
Pamiętaj, że możesz dostosować zawartość drukowaną w każdym z tych scenariuszy:
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)"
(Nie znalazłem sposobu, aby wywołać tę „domyślną” wartość, na przykład, aby wydrukować „Miasto to Melbourne” bez uciekania się do instrukcji przełącznika. Użycie \(self)
w implementacji description
/ debugDescription
powoduje nieskończoną rekurencję).
Powyższe komentarze String
„s init(_:)
& init(reflecting:)
inicjalizatorów opisać dokładnie co jest drukowane, w zależności od typu odbitych Przylega do:
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)
}
Zobacz informacje o wersji, aby uzyskać informacje o tej zmianie.
print(enum)
, możesz użyćString(enum)