C++宽字符判断是否相等
时间: 2024-01-25 08:44:10 浏览: 241
在C++中,可以使用`wchar_t`类型来表示宽字符。要判断两个宽字符是否相等,可以使用`==`运算符。例如:
```cpp
wchar_t c1 = L'中';
wchar_t c2 = L'国';
if (c1 == c2) {
wcout << L"相等" << endl;
} else {
wcout << L"不相等" << endl;
}
```
上面的代码中,我们声明了两个`wchar_t`类型的变量`c1`和`c2`,分别赋值为中文字符“中”和“国”。然后使用`==`运算符判断它们是否相等。如果相等,就输出“相等”,否则输出“不相等”。注意,因为是宽字符,所以需要使用`wcout`输出。
相关问题
C++ 字符串判断是否相等
在 C++ 中,可以使用 `==` 操作符来判断两个字符串是否相等。例如:
```cpp
string str1 = "hello";
string str2 = "world";
if (str1 == str2) {
cout << "str1 is equal to str2" << endl;
} else {
cout << "str1 is not equal to str2" << endl;
}
```
其中,`==` 操作符会比较两个字符串的内容是否相等,如果相等则返回 `true`,否则返回 `false`。注意字符串比较是区分大小写的,即 "hello" 和 "Hello" 是不相等的。如果需要忽略大小写,可以使用 `strcasecmp` 或 `stricmp` 等函数。
C++判断字符串是否相等
可以使用C++中的字符串比较函数`strcmp()`来判断两个字符串是否相等。如果返回值为0,则表示两个字符串相等,否则不相等。
示例代码:
```c++
#include <iostream>
#include <cstring>
using namespace std;
int main() {
string str1 = "hello";
string str2 = "world";
string str3 = "hello";
if (strcmp(str1.c_str(), str2.c_str()) == 0) {
cout << "str1 and str2 are equal" << endl;
} else {
cout << "str1 and str2 are not equal" << endl;
}
if (strcmp(str1.c_str(), str3.c_str()) == 0) {
cout << "str1 and str3 are equal" << endl;
} else {
cout << "str1 and str3 are not equal" << endl;
}
return 0;
}
```
输出结果:
```
str1 and str2 are not equal
str1 and str3 are equal
```
阅读全文