Objective-C'de description
hata ayıklamaya yardımcı olmak için sınıflarına bir yöntem eklenebilir :
@implementation MyClass
- (NSString *)description
{
return [NSString stringWithFormat:@"<%@: %p, foo = %@>", [self class], foo _foo];
}
@end
Sonra hata ayıklayıcıda şunları yapabilirsiniz:
po fooClass
<MyClass: 0x12938004, foo = "bar">
Swift'in eşdeğeri nedir? Swift'in REPL çıktısı yardımcı olabilir:
1> class MyClass { let foo = 42 }
2>
3> let x = MyClass()
x: MyClass = {
foo = 42
}
Ancak konsola yazdırmak için bu davranışı geçersiz kılmak istiyorum:
4> println("x = \(x)")
x = C11lldb_expr_07MyClass (has 1 child)
Bu println
çıktıyı temizlemenin bir yolu var mı ? Printable
Protokolü gördüm :
/// This protocol should be adopted by types that wish to customize their
/// textual representation. This textual representation is used when objects
/// are written to an `OutputStream`.
protocol Printable {
var description: String { get }
}
Ben bu tarafından otomatik olarak "görüleceğini" düşündüm println
ama böyle görünmüyor:
1> class MyClass: Printable {
2. let foo = 42
3. var description: String { get { return "MyClass, foo = \(foo)" } }
4. }
5>
6> let x = MyClass()
x: MyClass = {
foo = 42
}
7> println("x = \(x)")
x = C11lldb_expr_07MyClass (has 1 child)
Ve bunun yerine açıkça açıklama çağırmak zorunda:
8> println("x = \(x.description)")
x = MyClass, foo = 42
Daha iyi bir yol var mı?