当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ wcslen()用法及代码示例


wcslen()函数在cwchar.h头文件中定义。函数wcslen()函数返回给定宽字符串的长度。

用法:

size_t wcslen(const wchar_t* str);

参数:此方法采用单个参数str,该参数表示要计算其长度的宽字符串的指针。


返回值:此函数返回宽字符串的长度。

以下示例程序旨在说明上述函数:-

示例1:

// c++ program to demonstrate 
// example of wcslen() function. 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // Get the string to be used 
    wchar_t str[] = L"geeks"; 
  
    // Get the length of the string using wcslen() 
    wcout << L"The length of '" << str 
          << L"' is =" << wcslen(str) << endl; 
  
    return 0; 
}
输出:
The length of 'geeks' is =5

示例2:

// c++ program to demonstrate 
// example of wcslen() function. 
  
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
  
    // Get the string to be used 
    wchar_t str[] = L"A computer science portal for geeks"; 
  
    // Get the length of the string using wcslen() 
    wcout << L"The length of '" << str 
          << L"' is =" << wcslen(str) << endl; 
  
    return 0; 
}
输出:
The length of 'A computer science portal for geeks' is =35

=




注:本文由纯净天空筛选整理自bansal_rtk_大神的英文原创作品 wcslen() function in C++ with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。