📅  最后修改于: 2023-12-03 15:13:58.063000             🧑  作者: Mango
wmemcmp()
函数是C++标准库中的函数之一,在 <wchar.h>
头文件中定义。它用于比较两个宽字符串(wchar_t类型)的前n个字节是否相同。
int wmemcmp(const wchar_t* s1, const wchar_t* s2, size_t n)
s1
:第一个宽字符串,作为比较的基准。s2
:第二个宽字符串,与第一个宽字符串进行比较。n
:比较的字节数,也就是比较的范围。如果设置为0,表示两个宽字符串完全相等。#include <wchar.h>
#include <iostream>
using namespace std;
int main() {
wchar_t ws1[] = L"Hello";
wchar_t ws2[] = L"Hallo";
int result = wmemcmp(ws1, ws2, wcslen(ws1));
if (result < 0) {
wcout << L"ws1 is less than ws2" << endl;
} else if (result == 0) {
wcout << L"ws1 is equal to ws2" << endl;
} else if (result > 0) {
wcout << L"ws1 is greater than ws2" << endl;
}
return 0;
}
运行结果:
ws1 is greater than ws2
wmemcmp()
中的两个宽字符串必须以 L
开头,以表示它们是宽字符串。wmemcmp()
函数的前两个参数必须是指向宽字符的指针,否则将引发未定义的行为。