Why the switch statement cannot be applied on strings?(为什么 switch 语句不能应用于字符串?)
问题描述
编译下面的代码,得到类型非法
的错误.
Compiling the following code and got the error of type illegal
.
int main()
{
// Compilation error - switch expression of type illegal
switch(std::string("raj"))
{
case"sda":
}
}
您不能在 switch
或 case
中使用字符串.为什么?是否有任何解决方案可以很好地支持类似于打开字符串的逻辑?
You cannot use string in either switch
or case
. Why? Is there any solution that works nicely to support logic similar to switch on strings?
推荐答案
原因与类型系统有关.C/C++ 并不真正支持字符串作为一种类型.它确实支持常量字符数组的想法,但它并没有真正完全理解字符串的概念.
The reason why has to do with the type system. C/C++ doesn't really support strings as a type. It does support the idea of a constant char array but it doesn't really fully understand the notion of a string.
为了生成 switch 语句的代码,编译器必须理解两个值相等的含义.对于整数和枚举之类的项目,这是一个微不足道的比较.但是编译器应该如何比较 2 个字符串值呢?区分大小写、不敏感、文化意识等......如果不完全了解字符串,则无法准确回答.
In order to generate the code for a switch statement the compiler must understand what it means for two values to be equal. For items like ints and enums, this is a trivial bit comparison. But how should the compiler compare 2 string values? Case sensitive, insensitive, culture aware, etc ... Without a full awareness of a string this cannot be accurately answered.
此外,C/C++ switch 语句通常生成为分支表.为字符串样式开关生成分支表并不容易.
Additionally, C/C++ switch statements are typically generated as branch tables. It's not nearly as easy to generate a branch table for a string style switch.
这篇关于为什么 switch 语句不能应用于字符串?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为什么 switch 语句不能应用于字符串?


基础教程推荐
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 常量变量在标题中不起作用 2021-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 我有静态或动态 boost 库吗? 2021-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 这个宏可以转换成函数吗? 2022-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09