std::wcscpy
来自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 <cwchar>
|
||
| wchar_t *wcscpy( wchar_t *dest, const wchar_t *src ); |
||
。寬字元串複製指出,
src(包括終止空寬字元)寬字元數組所指向的dest.Original:
Copies the wide string pointed to by
src (including the terminating null wide character) to wide character array 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.
。如果字元串重疊,該行為是未定義.
Original:
If the strings overlap, the behavior is undefined.
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 the wide character array 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 | - | 。指針null結尾的寬字元串複製。
Original: pointer to the null-terminated wide 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. |
===。
返回值。===
dest
[编辑] 。為例。
| 本節是不完整的 原因: no example |
[编辑] 。另請參閱。
| 一定量的寬字元複製到另一個從一個字元串 Original: copies a certain amount of wide characters from one string to another The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (函數) | |
| 複製寬字元兩個非重疊的陣列之間的一定量的 Original: copies a certain amount of wide characters between two non-overlapping arrays 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 wcscpy
| |