當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ wmemmove()用法及代碼示例


wmemmove()函數在cwchar.h頭文件中定義。 wmemmove()函數將指定數量的寬字符從源複製到目標。

用法:

wchar_t* wmemmove(wchar_t* dest, const wchar_t* src, size_t n);

參數:此方法接受以下參數:


  • dest:指定指向目標數組的指針。
  • src 指定指向源數組的指針。
  • n:從src複製到dest的寬字符數。

返回值:wmemmove()函數返回修改後的目標。

以下示例程序旨在說明上述函數:-

例:-

// 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[30]; 
  
    // maximum length of the source string 
    wchar_t src[30]; 
  
    // initialize the destination string 
    wcscpy(dest, L"A computer science portal for geeks"); 
  
    wprintf(L"Destination: %ls\n", dest); 
  
    // initialize the source string 
    wcscpy(src, L"geeksforgeeks"); 
  
    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 gegeeksforgeeks


相關用法


注:本文由純淨天空篩選整理自bansal_rtk_大神的英文原創作品 wmemmove() function in c++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。