Instance Property インスタンスプロパティ

description

A textual representation of this instance. このインスタンスのテキスト表現。

Declaration 宣言

var description: String { get }

Discussion 解説

Calling this property directly is discouraged. Instead, convert an instance of any type to a string by using the String(describing:) initializer. This initializer works with any type, and uses the custom description property for types that conform to CustomStringConvertible: このプロパティを直接に呼び出すことは、推奨されません。代わりに、どんな型のインスタンスでも文字列へと、String(describing:)イニシャライザを使って変換してください。このイニシャライザはどんな型とでも働きます、そしてあつらえのdescriptionプロパティをCustomStringConvertibleに準拠する型に対して使います:


struct Point: CustomStringConvertible {
    let x: Int, y: Int


    var description: String {
        return "(\(x), \(y))"
    }
}


let p = Point(x: 21, y: 30)
let s = String(describing: p)
print(s)
// Prints "(21, 30)"

The conversion of p to a string in the assignment to s uses the Point type’s description property. sへの代入におけるpの文字列への変換は、Point型のもつdescriptionプロパティを使います。

Relationships 関係

From Protocol 由来プロトコル