A closure with a pointer parameter that points to a null-terminated sequence of UTF-8 code units. If body
has a return value, that value is also used as the return value for the with
method. The pointer argument is valid only for the duration of the method’s execution.
UTF-8コード単位のnull終端シーケンスを指し示すポインタパラメータを持つクロージャ。body
が戻り値を持つならば、その値はまたwith
メソッドの戻り値としても使われます。ポインタ引数は、ただメソッドの実行の間に対してのみ有効です。
Generic Instance Method
総称体インスタンスメソッド
with
withCString(_:)
Calls the given closure with a pointer to the contents of the string, represented as a null-terminated sequence of UTF-8 code units.
null終端のUTF-8コード単位シーケンスとして表される、文字列の内容へのポインタとともに与えられたクロージャを呼び出します。
Availability
- iOS 8.0+
- iPadOS 8.0+
- macOS 10.10+
- Mac Catalyst 13.0+
- tvOS 9.0+
- watchOS 2.0+
- Xcode 7.0+
Technology
- Swift Standard Library Swift標準ライブラリ
Declaration 宣言
func withCString<Result>(_ body: (UnsafePointer
<Int8
>) throws -> Result) rethrows -> Result
Parameters パラメータ
body
CString(_:) CString(_:)
Return Value 戻り値
The return value, if any, of the body
closure parameter.
body
クロージャパラメータの戻り値、もしあれば。
Discussion 解説
The pointer passed as an argument to body
is valid only during the execution of with
. Do not store or return the pointer for later use.
引数としてbody
に渡されるポインタは、with
の実行の間のみ有効です。後で使うためにポインタを格納したり返したりしないでください。
Relationships 関係
From Protocol 由来プロトコル
See Also 参照
Getting C Strings C文字列を扱う
var utf8CString: ContiguousArray<CChar>
A contiguously stored null-terminated UTF-8 representation of the string.
隣接格納されるヌル終端UTF-8表現のこの文字列。
func withCString <Result, TargetEncoding>( encodedAs : TargetEncoding.Type, (UnsafePointer<TargetEncoding.CodeUnit>) -> Result) -> Result
Calls the given closure with a pointer to the contents of the string, represented as a null-terminated sequence of code units.
null終端のコード単位シーケンスとして表される、文字列の内容へのポインタとともに与えられたクロージャを呼び出します。