admin管理员组文章数量:1345316
I have a constant declared in one case
of my switch
statement:
void foo( int& v ) {
switch( v ) {
case 0:
static constexpr int c{ 0 };
break;
case 1:
v = c;
break;
}
}
Everything works fine in GCC, Clang and EDG. But if I compile the program in Visual Studio, it complains
error C2360: initialization of 'c' is skipped by 'case' label
Online demo:
Is it correct that initialization of the constant c
can be skipped? Is the program really ill formed or it must be accepted?
I have a constant declared in one case
of my switch
statement:
void foo( int& v ) {
switch( v ) {
case 0:
static constexpr int c{ 0 };
break;
case 1:
v = c;
break;
}
}
Everything works fine in GCC, Clang and EDG. But if I compile the program in Visual Studio, it complains
error C2360: initialization of 'c' is skipped by 'case' label
Online demo: https://gcc.godbolt./z/jTdnhfzoo
Is it correct that initialization of the constant c
can be skipped? Is the program really ill formed or it must be accepted?
1 Answer
Reset to default 4Can initialization of
static
constant be skipped bycase
label?
No, not if it's constant initialized as in your function.
C++14 6.7.4
Constant initialization ([basic.start.init]) of a block-scope entity with
static
storage duration, if applicable, is performed before its block is first entered.
This means that your function is valid and will initialize c
when the switch
block is first entered. A similarly valid function:
void foo(int& v) {
goto bar;
static constexpr int c{123};
bar:
v = c; // assigns 123 to v
}
Removing constexpr
doesn't matter here. It'll still be constant initialization of a block-scope entity with static
storage duration and therefore performed when the block is first entered.
This bug in MSVC is reported here.
Note: Just because it's valid, it doesn't mean it's a good idea. Don't do this.
本文标签: cCan initialization of static constant be skipped by 39case39 labelStack Overflow
版权声明:本文标题:c++ - Can initialization of static constant be skipped by 'case' label? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743812156a2543269.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
constexpr
variables so not sure if it applies: stackoverflow/questions/92396/… – NathanOliver Commented 2 days agoconstexpr
doesn't matter. It's the constant initialization of astatic
in the block that makes it valid. It could be juststatic int c{0};
...unless I'm missing something. – Ted Lyngmo Commented 2 days ago