var debugDescription : String
A textual representation of this key, suitable for debugging.
このキーのテキスト表現、デバッグに適するもの。
Availability
Technology
var debugDescription: String
{ get }
Calling this property directly is discouraged. Instead, convert an instance of any type to a string by using the String(reflecting:)
initializer. This initializer works with any type, and uses the custom debug
property for types that conform to Custom
:
このプロパティを直接に呼び出すことは、推奨されません。代わりに、どんな型のインスタンスでも文字列へと、String(reflecting:)
イニシャライザを使って変換してください。このイニシャライザはどんな型とでも働きます、そしてあつらえのdebug
プロパティをCustom
に準拠する型に対して使います:
The conversion of p
to a string in the assignment to s
uses the Point
type’s debug
property.
p
の文字列への変換はs
への代入において、Point
型のもつdebug
プロパティを使います。
var debugDescription : String