init?(bytesNoCopy : UnsafeMutableRawPointer, length: Int, encoding: String.Encoding, freeWhenDone : Bool)
Produces an initialized
String
object that contains a given number of bytes from a given buffer of bytes interpreted in a given encoding, and optionally frees the buffer. WARNING: this initializer is not memory-safe!
初期化されたString
オブジェクトを作成します、それは与えられた符号化での与えられたバイト解釈のバッファ由来の与えられた数のバイトを含んでいます、そして随意にそのバッファを解放します。警告:このイニシャライザはメモリ安全ではありません!
init(cString : UnsafePointer<CChar>)
Creates a new string by copying the null-terminated UTF-8 data referenced by the given pointer.
新しい文字列を、与えられたポインタによって参照されるヌル終端のUTF-8データをコピーすることによって作成します。
init?(cString : UnsafePointer<CChar>, encoding: String.Encoding)
Produces a string containing the bytes in a given C array, interpreted according to a given encoding.
与えられた符号化によって解釈される、与えられたC配列の中のバイトを含んでいる文字列を生成します。
init<Encoding>(decodingCString : UnsafePointer<Encoding.CodeUnit>, as: Encoding.Type)
Creates a string from the null-terminated sequence of bytes at the given pointer.
与えられたポインタでのnull終端のバイトシーケンスから文字列を作成します。
static func decodeCString <Encoding>(UnsafePointer<Encoding.CodeUnit>?, as: Encoding.Type, repairingInvalidCodeUnits : Bool) -> (result: String, repairsMade : Bool)?
Creates a new string by copying the null-terminated data referenced by the given pointer using the specified encoding.
新しい文字列を、与えられたポインタによって参照されるヌル終端のデータをコピーすることによって作成します、指定された符号化を使います。