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


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


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

用法:

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

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


  • dest:指定指向目標數組的指針。
  • src:指定指向源數組的指針。
  • n:表示要複製的字符數。

返回值:此函數返回修改後的目標。

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

範例1:

// c++ program to demonstrate 
// example of wcsncpy() function. 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    // initialize the source string 
    wchar_t src[] = L"A Computer Science portal for geeks"; 
  
    // maximum length of the destination string 
    wchar_t dest[40]; 
  
    // copy the source to destination using wcsncpy 
    wcsncpy(dest, src, 19); 
  
    // Print the copied destination 
    wcout << "Destination string is:" << dest; 
  
    return 0; 
}
輸出:
Destination string is:A Computer Science

示例2:

// c++ program to demonstrate 
// example of wcsncpy() function. 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    // initialize the source string 
    wchar_t src[] = L"GeeksforGeeks"; 
  
    // maximum length of the destination string 
    wchar_t dest[40]; 
  
    // copy the source to destination using wcsncpy 
    wcsncpy(dest, src, 5); 
  
    // Print the copied destination 
    wcout << "Destination string is:" << dest; 
  
    return 0; 
}
輸出:
Destination string is:Geeks


相關用法


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