wmemmove()函数定义在cwchar.h头文件中。函数的作用是:将指定数量的宽字符从源复制到目标。
语法如下:
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 <bits/stdc++.h>
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 "srcmini" ;
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: srcmini
After modication, destinstion: A ksforter science portal for geeks
被认为是行业中最受欢迎的技能之一, 我们拥有自己的编码基础C ++ STL通过激烈的问题解决过程来训练和掌握这些概念。
评论前必须登录!
注册