我想在我的程序中使用switch-case但是编译器给了我这个错误:
switch expression of type 'QString' is illegal
如何将switch
语句与QString
一起使用?
我的代码如下:
bool isStopWord( QString word )
{
bool flag = false ;
switch( word )
{
case "the":
flag = true ;
break ;
case "at" :
flag = true ;
break ;
case "in" :
flag = true ;
break ;
case "your":
flag = true ;
break ;
case "near":
flag = true ;
break ;
case "all":
flag = true ;
break ;
case "this":
flag = true ;
break ;
}
return flag ;
}
如何将switch语句与QString一起使用?
你不能。在C ++语言中,switch
语句只能与整数或枚举类型一起使用。您可以正式将类类型的对象放入switch
语句中,但这只是意味着编译器将查找用户定义的转换以将其转换为整数或枚举类型。
我建议使用if和break。这将使其接近于在计算中切换情况。
QString a="one"
if (a.contains("one"))
{
break;
}
if (a.contains("two"))
{
break;
}
它与C ++ switch语句完全相同。
switch(var){
case(option1):
doesStuff();
break;
case(option2):
etc();
break;
}
这与Qt无关,就像它与袜子的颜色无关。
C ++开关语法如下:
char c = getc();
switch( c ) {
case 'a':
a();
break;
case 'b':
b();
break;
default:
neither();
}
如果这没有帮助那么请详细列出错误信息,可能还有袜子的颜色。
编辑:为了回复你的回复,你不能使用非整数类型的switch
。特别是,您不能使用类类型。不是QString
类型的对象,也不是任何其他类型的对象。您可以使用if-else if-else
构造,或者您可以使用运行时或编译时多态,或重载,或switch
的任何替代数组。
看看这个,它对我有帮助
int main(int, char **)
{
static const uint red_hash = 30900;
static const uint green_hash = 7244734;
static const uint blue_hash = 431029;
else
static const uint red_hash = 112785;
static const uint green_hash = 98619139;
static const uint blue_hash = 3027034;
endif
QTextStream in(stdin), out(stdout);
out << "Enter color: " << flush;
const QString color = in.readLine();
out << "Hash=" << qHash(color) << endl;
QString answer;
switch (qHash(color)) {
case red_hash:
answer="Chose red";
break;
case green_hash:
answer="Chose green";
break;
case blue_hash:
answer="Chose blue";
break;
default:
answer="Chose something else";
break;
}
out << answer << endl;
}
你可以在迭代之前创建一个QStringList,如下所示:
QStringList myOptions;
myOptions << "goLogin" << "goAway" << "goRegister";
/*
goLogin = 0
goAway = 1
goRegister = 2
*/
然后:
switch(myOptions.indexOf("goRegister")){
case 0:
// go to login...
break;
case 1:
// go away...
break;
case 2:
//Go to Register...
break;
default:
...
break;
}
在C ++中直接切换字符串是不可能的。然而,在Qt中使用QMetaEnum
是可能的,如下所示:Q_ENUM
and how to switch on a string
为此,首先声明一个枚举,其中包含要在切换案例中使用的字符串作为类声明中的枚举器名称。然后使用Q_ENUMS
将枚举添加到元数据中,以便程序稍后进行搜索。
#include <QMetaEnum>
class TestCase : public QObject
{
Q_OBJECT
Q_ENUMS(Cases) // metadata declaration
public:
explicit Test(QObject *parent = 0);
enum Cases
{
THE, AT, IN, THIS // ... ==> strings to search, case sensitive
};
public slots:
void SwitchString(QString word);
};
然后在.cpp
文件中使用将字符串转换为相应的值后实现所需的开关。
比较区分大小写,因此如果您想要不区分大小写的搜索,请先将输入字符串转换为大写/小写。您还可以执行字符串所需的其他转换。例如,如果您需要在C / C ++标识符中使用空格或不允许的字符切换字符串,则可以转换/删除/替换这些字符以使字符串成为有效的标识符。
void TestCase::SwitchString(QString word)
{
// get information about the enum named "Cases"
QMetaObject MetaObject = this->staticMetaObject;
QMetaEnum MetaEnum = MetaObject.enumerator(MetaObject.indexOfEnumerator("Cases"));
switch (MetaEnum.keyToValue(word.toUpper().toLatin1()))
// or simply switch (MetaEnum.keyToValue(word)) if no string modification is needed
{
case THE: /* do something */ break;
case AT: /* do something */ break;
case IN: /* do something */ break;
case THIS: /* do something */ break;
default: /* do something */ break;
}
}
然后只需使用该类来切换字符串。例如:
TestCase test;
test.SwitchString("At");
test.SwitchString("the");
test.SwitchString("aBCdxx");
如果您可以使用现代C ++编译器,那么您可以为字符串计算编译时哈希值。在this answer中有一个相当简单的constexpr
散列函数的例子。
所以解决方案可能如下所示:
// function from https://stackoverflow.com/a/2112111/1150303
// (or use some other constexpr hash functions from this thread)
unsigned constexpr const_hash(char const *input) {
return *input ?
static_cast<unsigned int>(*input) + 33 * const_hash(input + 1) :
5381;
}
QString switchStr = "...";
switch(const_hash(switchStr.toStdString().c_str()))
{
case const_hash("Test"):
qDebug() << "Test triggered";
break;
case const_hash("asdf"):
qDebug() << "asdf triggered";
break;
default:
qDebug() << "nothing found";
break;
}
它仍然不是一个完美的解决方案。可能存在哈希冲突(因此每当你添加/更改case
时都会测试你的程序),如果你想使用异域或QString
字符,你必须小心从char*
到utf
的转换。
对于c ++ 11,为你的项目添加CONFIG += c++11
,用于Qt5。 Qt4:QMAKE_CXXFLAGS += -std=c++11
@ DomTomCat的回答已经触及了这一点,但由于问题是专门询问Qt,有一个更好的方法。
Qt已经有了QStrings的散列函数,但不幸的是Qt4的qHash没有资格作为constexpr。幸运的是Qt是开源的,所以我们可以将QStrings的qHash功能复制到我们自己的constexpr散列函数中并使用它!
我把它修改为只需要一个参数(字符串文字总是以空值终止):
uint constexpr qConstHash(const char *string)
{
uint h = 0;
while (*string != 0)
{
h = (h << 4) + *string++;
h ^= (h & 0xf0000000) >> 23;
h &= 0x0fffffff;
}
return h;
}
一旦定义了这个,就可以在switch语句中使用它,如下所示:
QString string;
// Populate the QString somehow.
switch (qHash(string))
{
case qConstHash("a"):
// Do something.
break;
case qConstHash("b"):
// Do something else.
break;
}
由于此方法使用Qt用于计算哈希值的相同代码,因此它将具有与QHash相同的哈希冲突阻力,这通常非常好。缺点是这需要一个相当新的编译器 - 因为它在constexpr散列函数中有非返回语句,它需要C ++ 14。
如前所述,这不是Qt问题,switch语句只能使用常量表达式,查看集合类QSet
是一个很好的解决方案
void initStopQwords(QSet<QString>& stopSet)
{
// Ideally you want to read these from a file
stopSet << "the";
stopSet << "at";
...
}
bool isStopWord(const QSet<QString>& stopSet, const QString& word)
{
return stopSet.contains(word);
}
试试这个:
// file qsswitch.h
#ifndef QSSWITCH_H
#define QSSWITCH_H
#define QSSWITCH(__switch_value__, __switch_cases__) do{\
const QString& ___switch_value___(__switch_value__);\
{__switch_cases__}\
}while(0);\
#define QSCASE(__str__, __whattodo__)\
if(___switch_value___ == __str__)\
{\
__whattodo__\
break;\
}\
#define QSDEFAULT(__whattodo__)\
{__whattodo__}\
#endif // QSSWITCH_H
如何使用:
#include "qsswitch.h"
QString sW1 = "widget1";
QString sW2 = "widget2";
class WidgetDerived1 : public QWidget
{...};
class WidgetDerived2 : public QWidget
{...};
QWidget* defaultWidget(QWidget* parent)
{
return new QWidget(...);
}
QWidget* NewWidget(const QString &widgetName, QWidget *parent) const
{
QSSWITCH(widgetName,
QSCASE(sW1,
{
return new WidgetDerived1(parent);
})
QSCASE(sW2,
{
return new WidgetDerived2(parent);
})
QSDEFAULT(
{
return defaultWidget(parent);
})
)
}
有一些简单的宏魔法。预处理之后:
QSSWITCH(widgetName,
QSCASE(sW1,
{
return new WidgetDerived1(parent);
})
QSCASE(sW2,
{
return new WidgetDerived2(parent);
})
QSDEFAULT(
{
return defaultWidget(parent);
})
)
将这样工作:
// QSSWITCH
do{
const QString& ___switch_value___(widgetName);
// QSCASE 1
if(___switch_value___ == sW1)
{
return new WidgetDerived1(parent);
break;
}
// QSCASE 2
if(___switch_value___ == sW2)
{
return new WidgetDerived2(parent);
break;
}
// QSDEFAULT
return defaultWidget(parent);
}while(0);
case "the":
//^^^ case label must lead to a constant expression
我不知道qt,但你可以尝试一下。如果switch
与正常的==
没什么不同,你可以避免使用QString
并直接使用std::string
进行比较。
if( word == "the" )
{
// ..
}
else if( word == "at" )
{
// ..
}
// ....
这似乎有点讽刺恕我直言。
bool isStopWord( QString w ) {
return (
w == "the" ||
w == "at" ||
w == "in" ||
w == "your" ||
w == "near" ||
w == "all" ||
w == "this"
);
}