A pointer to a sequence of contiguous code units in the encoding specified in source
, ending just before the first zero code unit.
source
で指定のエンコーディングでの、最初のゼロコード単位の直前で終わっている隣接コード単位シーケンスへのポインタ。
Generic Initializerinit(decoding
init(decodingCString:as:)
Creates a string from the null-terminated sequence of bytes at the given pointer.
与えられたポインタでのnull終端のバイトシーケンスから文字列を作成します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 9.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
init<Encoding>(decodingCString ptr: UnsafePointer
<Encoding.CodeUnit >, as sourceEncoding: Encoding.Type) where Encoding : _UnicodeEncoding
Parameters パラメータ
nullTerminatedCodeUnits
Encoding Encoding sourceEncoding
The encoding in which the code units should be interpreted. それでコード単位が解釈されるべきエンコーディング。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Converting a C String C文字列を変換する
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<UInt8>)
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配列の中のバイトを含んでいる文字列を生成します。
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.
新しい文字列を、与えられたポインタによって参照されるヌル終端のデータをコピーすることによって作成します、指定された符号化を使います。