std::char_traits<CharT>::move
提供: cppreference.com
![]() |
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
CharT* move( CharT* dest, const CharT* src, std::size_t count ); |
||
コピーした文字列から
count
文字がsrc
が指す文字列にdest
によって指さ.Original:
Copies
count
character from character string pointed to by src
to character string pointed to by dest
.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.
コピーした文字の範囲が重複している場合でも、すなわち
src
が[になって正しく実行dest
、dest + count
).Original:
Performs correctly even if the copied character ranges overlap, i.e.
src
is in [dest
, dest + count
).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.
目次 |
パラメータ
dest | - | コピー先の文字列へのポインタ
Original: pointer to a character string to copy to The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
src | - | からコピーする文字列へのポインタ
Original: pointer to a character string to copy from The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
count | - | コピーする文字数
Original: the number of characters to copy The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
値を返します
dest
例外
(なし)
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.
複雑
リニア.
Original:
Linear.
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.