wcscmp()函数在cwchar.h头文件中定义。 wcscmp()函数用于比较两个以null结尾的宽字符串,并且此比较是按字典顺序进行的。
句法:
int wcscmp(const wchar_t* str1, const wchar_t* str2);
参数:此方法采用以下两个参数:
- str1:表示要比较的第一个字符串的指针。
- str2:表示要比较的第二个字符串的指针。
返回值:该方法返回:
- 零:如果str1和str2相同。
- 正值:如果str1中的第一个不同字符大于str2中的相应字符。
- 负值:如果str1中的第一个不同字符小于str2中的相应字符。
下面的程序说明了上述函数:-
范例1:-
// c++ program to demonstrate
// example of wcscmp() function.
#include
using namespace std;
int main()
{
// initialize the str1
wchar_t str1[] = L"Computer";
// initialize the str2
wchar_t str2[] = L"Science";
// Compare and print results
wcout << L"Comparing " << str1 << L" and "
<< str2 << L" = " << wcscmp(str1, str2) << endl;
// Compare and print results
wcout << L"Comparing " << str2 << L" and "
<< str2 << L" = " << wcscmp(str2, str2) << endl;
// Compare and print results
wcout << L"Comparing " << str2 << L" and "
<< str1 << L" = " << wcscmp(str2, str1) << endl;
return 0;
}
输出:
Comparing Computer and Science = -1
Comparing Science and Science = 0
Comparing Science and Computer = 1
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。