wmemmove()函数定义在cwchar.h头文件中。函数的作用是:将指定数量的宽字符从源复制到目标。
语法如下:
wchar_t* wmemmove(wchar_t* dest, const wchar_t* src, size_t n);
参数:此方法接受以下参数:
- dest:指定指向目标数组的指针。
- src指定指向源数组的指针。
- n:从src复制到dest的宽字符数。
【C++ 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通过激烈的问题解决过程来训练和掌握这些概念。
推荐阅读
- Java如何实现HashMap(原理解析和代码实现)
- Java中的通配符解读和用法指南
- 算法题(具有三个符号(*,+,?)的通配符模式匹配)
- 算法设计(如何实现通配符模式匹配())
- 算法题(字符串匹配,其中一个字符串包含通配符)
- Windows/Linux中所有已连接网络的Wi-Fi密码
- 算法设计(求二叉树的垂直宽度|S1)
- 为什么strcpy和strncpy使用不安全()
- 为什么快速排序首选用于数组,而合并排序首选用于链表()