"error C2043: 'break' が正しくありません" に関する原因と対処

このコンパイルエラーの原因と対処に関して説明します。

スポンサード リンク

Microsoft Visual C++にて以下のソースでコンパイルエラーが発生します:

コンパイルエラーメッセージ:
error C2043: 'break' が正しくありません。

ソース(バグ有り):

#include <stdio.h>
#include <stdlib.h>

void test_func(void);

int main(void)
{
atexit(test_func);
printf ("exit main func\n");
return 0; } void test_func(void) {
printf("exit test_func function successfully\n");
break; }


原因:
switch〜case〜break 以外の構文で break が使用された可能性があります。

対処:
この例では return の代わりに誤って break が使用されていました。


ソース(修正済み):

#include <stdio.h>
#include <stdlib.h>

void test_func(void);

int main(void)
{
atexit(test_func);
printf ("exit main func\n");
return 0; } void test_func(void) {
printf("exit test_func function successfully\n");
return; }

スポンサード リンク



[コンパイルエラーコード、メッセージに戻る]