Initializer

init(cString:)

Creates a new string by copying the null-terminated UTF-8 data referenced by the given pointer. 新しい文字列を、与えられたポインタによって参照されるヌル終端のUTF-8データをコピーすることによって作成します。

Declaration 宣言

init(cString: UnsafePointer<UInt8>)

Discussion 解説

This is identical to init(cString: UnsafePointer<CChar>) but operates on an unsigned sequence of bytes. これは、init(cString: UnsafePointer<CChar>)と同一です、しかし符号なしバイトシーケンス上で作動します。

See Also 参照

Converting a C String C文字列を変換する