wmemmove()函数在cwchar.h头文件中定义。 wmemmove()函数将指定数量的宽字符从源复制到目标。
句法:
wchar_t* wmemmove(wchar_t* dest, const wchar_t* src, size_t n);
参数:此方法接受以下参数:
- dest:指定指向目标数组的指针。
- src指定指向源数组的指针。
- n:从src复制到dest的宽字符数。
返回: wmemmove()函数返回修改后的目标。
下面的程序说明了上述函数:-
例子:-
C++14
// c++ program to demonstrate
// example of wmemmove() function.
#include
using namespace std;
int main()
{
// Maximum length of the destination string
wchar_t* dest_buf=L"A computer
science portal for geeks";
wchar_t dest[wcslen(dest_buf)+1];
// Maximum length of the source string
wchar_t* src_buf=L"geeksforgeeks";
wchar_t src[wcslen(src_buf)+1];
// Initialize the destination string
wcscpy(dest,dest_buf);
wprintf(L"Destination: %ls\n", dest);
// Initialize the source string
wcscpy(src,src_buf );
wprintf(L"Source: %ls\n", src);
wmemmove(dest+2, src+3, 5);
wprintf(L"After modication, destinstion:
%ls\n", dest);
return 0;
}
输出:
Destination: A computer science portal for geeks
Source: geeksforgeeks
After modication, destinstion: A ksforter science portal for geeks
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。