wscanf, fwscanf, swscanf
提供:cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| Defined in header <wchar.h>
|
||
| int wscanf( const wchar_t* format, ... ); |
(1) | (C99以来) |
| (2) | (C99以来) | |
| int swscanf( const wchar_t* buffer, const wchar_t* format, ... ); |
(3) | (C99以来) |
さまざまなソースからデータを読み込み、
formatに従ってそれを解釈して、与えられた場所に結果を格納します.Original:
Reads data from the a variety of sources, interprets it according to
format and stores the results into given locations.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
1)
stdinからデータを読み取り.
Original:
Reads the data from stdin.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
2)
streamファイルストリームからデータを読み込みます.Original:
Reads the data from file stream
stream.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
3)
buffernullで終了するワイド文字列からデータを読み込みます.Original:
Reads the data from null-terminated wide string
buffer.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
目次 |
[編集] パラメータ
| stream | - | から読み込むための入力ファイルストリーム
Original: input file stream to read from The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | ||||
| buffer | - | から読み取るための、nullで終了するワイド文字列へのポインタ
Original: pointer to a null-terminated wide string to read from The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | ||||
| format | - | 入力を読み取る方法を指定するNULLで終わるワイド文字列へのポインタ。
Original: pointer to a null-terminated wide string specifying how to read the input.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | ||||
| ... | - | 引数を受け取る
Original: receiving arguments The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 値を返します
第1の受信引数が割り当てられる前に障害が発生した場合、引数の数が正常に読み取る、またはEOF.
Original:
Number of arguments successfully read, or EOF if failure occurs before the first receiving argument was assigned.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[編集] 例
| This section is incomplete Reason: no example |
[編集] も参照してください
| (C99) (C99) (C99) |
stdin、ファイルstream または可変引数リストを使用してバッファから書式ワイド文字入力を読み取ります Original: reads formatted wide character input from stdin, a file stream or a buffer using variable argument list The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (機能) |
| C++ documentation for wscanf, fwscanf, swscanf
| |