文章目录
在 C++ 中,case 语句通常是用于 switch 语句中,用来匹配整数或枚举类型的常量。在标准的 C++ 中,case 语句后面不能直接跟字符串变量
,因为 case 语句要求其后面是一个常量表达式。
如果想在 switch 语句中匹配字符串,可以将字符串转换为整数或者使用其他方法来实现。一种常见的方法是使用 std::unordered_map 或 std::map 来将字符串映射到整数,然后在 switch 语句中使用整数进行匹配。
下面是一个示例,演示了如何使用 std::unordered_map 来将字符串映射到整数,然后在 switch 语句中使用整数进行匹配:
#include <iostream>
#include <unordered_map>int main() {std::unordered_map<std::string, int> stringToIntMap = {{"apple", 1},{"banana", 2},{"orange", 3}};std::string fruit = "banana";// 使用整数进行匹配switch (stringToIntMap[fruit]) {case 1:std::cout << "Selected fruit: apple" << std::endl;break;case 2:std::cout << "Selected fruit: banana" << std::endl;break;case 3:std::cout << "Selected fruit: orange" << std::endl;break;default:std::cout << "Unknown fruit" << std::endl;}return 0;
}
在上述示例中,我们将字符串映射到整数,然后在 switch 语句中使用整数进行匹配。这样做的好处是可以避免使用大量的 if-else 来匹配字符串,同时也能保持 switch 语句的结构清晰