var description: String
func description(withLocale : Any?) -> String
Availability 有効性
Technology
locale
An NSLocale
object or an NSDictionary
object that specifies options used for formatting each of the array’s elements (where recognized). Specify nil
if you don’t want the elements formatted.
NSLocale
オブジェクトまたはNSDictionary
オブジェクト、それは配列の持つ要素それぞれを書式設定するために使われるオプションを指定します(認める場合は)。nil
をあなたが書式設定された要素を望まないならば指定してください。
level
Specifies a level of indentation, to make the output more readable: the indentation is (4 spaces) * level
.
字下げの水準を指定します、出力をより読みやすくするため:字下げは、 (4つの空白) * level
です。
A string that represents the contents of the ordered set, formatted as a property list. 順序集合の内容を表す文字列、プロパティリストとして書式設定されます。
The returned NSString
object contains the string representations of each of the ordered set’s elements, in order, from first to last. To obtain the string representation of a given element, description
proceeds as follows:
返されるNSString
オブジェクトは、順序集合の持つ要素のそれぞれの文字列表現を含みます、順番に、最初から最後へと。ある与えられた要素の文字列表現を取得するには、description
は以下のように続行します:
If the element is an NSString
object, it is used as is.
その要素がNSString
オブシェクトならば、それはそのまま使われます。
If the element responds to description
, that method is invoked to obtain the element’s string representation.
その要素がdescription
に応答するならば、そのメソッドが発動されることで、その要素の持つ文字列表現を入手します。
If the element responds to description
, that method is invoked to obtain the element’s string representation.
その要素がdescription
に応答するならば、そのメソッドが発動されることで、その要素の持つ文字列表現を入手します。
If none of the above conditions is met, the element’s string representation is obtained by invoking its description
method
上記の条件のどれにも合わないならば、その要素の持つ文字列表現は、description
メソッドを発動することによって入手されます。
var description: String
func description(withLocale : Any?) -> String