Retourner au contenu associé (dépêche : Sortie de GCC 4.5)
Posté par liberforce (site web personnel, Mastodon) le 15 avril 2010 à 17:45. En réponse à la dépêche Sortie de GCC 4.5. Évalué à 4.
if (do_step_1 () == FALSE) goto err_step_1; if (do_step_2 () == FALSE) goto err_step_2; if (do_step_3 () == FALSE) goto err_step_3; return TRUE; err_step_3 : undo_step_3 (); err_step_2 : undo_step_2 (); err_step_1 : undo_step_1 (); return FALSE;
AltStyle によって変換されたページ (->オリジナル) / アドレス: モード: デフォルト 音声ブラウザ ルビ付き 配色反転 文字拡大 モバイル
[^] # Re: goto ?
Posté par liberforce (site web personnel, Mastodon) . En réponse à la dépêche Sortie de GCC 4.5. Évalué à 4.
if (do_step_1 () == FALSE)
goto err_step_1;
if (do_step_2 () == FALSE)
goto err_step_2;
if (do_step_3 () == FALSE)
goto err_step_3;
return TRUE;
err_step_3 :
undo_step_3 ();
err_step_2 :
undo_step_2 ();
err_step_1 :
undo_step_1 ();
return FALSE;