📜  C++中的wcslen()函数与示例

📅  最后修改于: 2021-05-30 11:34:20             🧑  作者: Mango

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

句法:

size_t wcslen(const wchar_t* str);

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

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

下面的程序说明了上述函数:-

范例1:-

// c++ program to demonstrate
// example of wcslen() function.
  
#include 
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 
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

=

要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”