std::basic_streambuf::eback, std::basic_streambuf::gptr, std::basic_streambuf::egptr
提供: cppreference.com
< cpp | io | basic streambuf
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
char_type* eback() const; |
(1) | |
char_type* gptr() const; |
(2) | |
char_type* egptr() const; |
(3) | |
get領域を定義するポインタを返します。.
1) Original:
Returns pointers defining the get area.
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.
get領域の先頭へのポインタを返します。.
2) Original:
Returns the pointer to the beginning of the get area.
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.
get領域に現在の文字('ポインタを取得)へのポインタを返す.
3) Original:
Returns the pointer to the current character (get pointer) in the get area.
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.
get領域の末尾を指すポインタを返します。.
Original:
Returns the pointer to the end of the get area.
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.
目次 |
[編集] パラメータ
(なし)
Original:
(none)
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)get領域の先頭を指すポインタ.
2) Original:
The pointer to the beginning of the get area.
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.
get領域における現在の文字(取得ポインタ)へのポインタ..
3) Original:
The pointer to the current character (get pointer) in the get area.
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.
get領域の末尾へのポインタ..
Original:
The pointer to the end of the get area.
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 |
[編集] も参照してください
初めに、現在の文字とput領域の終わりへのポインタを返します Original: returns a pointer to the beginning, current character and the end of the put area The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (protectedメンバー関数) |