这意味着您的类不是文字类型...该程序无效,因为Options
它不是文字类类型。但是Checker
是文字类型。
struct Checker {
constexpr bool isChecked() {
return false;
}
};
struct Options {
Options(Checker *ConcurrentGBx)
:ConcurrentGBx(ConcurrentGBx)
{ }
constexpr bool is_concurrency_selected()const
{
//GBx is a groupbox with checkbox
return ConcurrentGBx->isChecked();
}
Checker *ConcurrentGBx;
};
int main() {
static Checker c;
constexpr Options o(&c);
constexpr bool x = o.is_concurrency_selected();
}
铿锵印
test.cpp:12:18: error: non-literal type 'Options' cannot have constexpr members
constexpr bool is_concurrency_selected()const
^
test.cpp:7:8: note: 'Options' is not literal because it is not an aggregate and has no constexpr constructors other than copy or move constructors
struct Options {
如果您修复此问题并创建Options
构造函数constexpr
,我的示例代码段将编译。类似的事情可能适用于您的代码。
你似乎不明白什么constexpr
意思。我建议阅读有关它的书(如果这样的书已经存在,无论如何)。