警告 C26819
switch 標籤之間未標註的 fallthrough (es.78)。
備註
這項檢查涵蓋 switch 陳述式中的隱含 fallthrough。 隱含 fallthrough 是當控制流程從一個 switch 案例直接傳輸至下列 switch 案例時,而不需要使用 [[fallthrough]];
陳述式。 當在包含至少一個陳述式的 switch 案例中偵測到隱含 fallthrough 時,就會引發這個警告。
如需詳細資訊,請參閱 ES.78:不要依賴 C++ Core Guidelines 中 switch
陳述式的隱含 fallthrough。
範例
在這裡範例中,隱含 fallthrough 會從非空白 switch
case
發生到下列 case
。
void fn1();
void fn2();
void foo(int a)
{
switch (a)
{
case 0: // implicit fallthrough from case 0 to case 1 is OK because case 0 is empty
case 1:
fn1(); // implicit fallthrough from case 1 into case 2
case 2: // Warning C26819.
fn2();
break;
default:
break;
}
}
若要修正此問題,請插入發生 fallthrough 的 [[fallthrough]];
陳述式。
void fn1();
void fn2();
void foo(int a)
{
switch (a)
{
case 0:
case 1:
fn1();
[[fallthrough]]; // fallthrough is explicit
case 2:
fn2();
break;
default:
break;
}
}
修正問題的另一種方法是移除隱含 fallthrough。
void fn1();
void fn2();
void foo(int a)
{
switch (a)
{
case 0:
case 1:
fn1();
break; // case 1 no longer falls through into case 2
case 2:
fn2();
break;
default:
break;
}
}