Objective-Cではdescription
、デバッグに役立つメソッドをクラスに追加できます。
@implementation MyClass
- (NSString *)description
{
return [NSString stringWithFormat:@"<%@: %p, foo = %@>", [self class], foo _foo];
}
@end
次に、デバッガーで次のことができます。
po fooClass
<MyClass: 0x12938004, foo = "bar">
Swiftで同等のものは何ですか?SwiftのREPL出力は役に立ちます:
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
もっと良い方法はありますか?