为什么不能将开关语句应用于字符串?
编译以下代码并得到type illegal.
type illegal
int main(){ // Compilation error - switch expression of type illegal switch(std::string("raj")) { case"sda": }}
您不能在其中使用字符串。switch或case..为什么?是否有任何解决方案可以很好地支持类似于打开字符串的逻辑?
switch
case
皈依舞
森林海
相关分类