ใน Objective-C เราสามารถเพิ่มdescription
วิธีลงในคลาสเพื่อช่วยในการดีบัก:
@implementation MyClass
- (NSString *)description
{
return [NSString stringWithFormat:@"<%@: %p, foo = %@>", [self class], foo _foo];
}
@end
จากนั้นในดีบักเกอร์คุณสามารถทำได้:
po fooClass
<MyClass: 0x12938004, foo = "bar">
อะไรที่เทียบเท่าใน Swift เอาต์พุต REPL ของ Swift มีประโยชน์:
1> class MyClass { let foo = 42 }
2>
3> let x = MyClass()
x: MyClass = {
foo = 42
}
แต่ฉันต้องการลบล้างพฤติกรรมนี้สำหรับการพิมพ์ไปยังคอนโซล:
4> println("x = \(x)")
x = C11lldb_expr_07MyClass (has 1 child)
มีวิธีล้างข้อมูลนี้println
หรือไม่? ฉันเห็นPrintable
โปรโตคอล:
/// 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 }
}
ฉันคิดว่าสิ่งนี้จะ "เห็น" โดยอัตโนมัติprintln
แต่ดูเหมือนจะไม่เป็นเช่นนั้น:
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)
และฉันต้องเรียกคำอธิบายแทน:
8> println("x = \(x.description)")
x = MyClass, foo = 42
มีวิธีที่ดีกว่า?