Is there a favored idiom for mimicing Java's try/finally in C++?

前端 未结 15 814
无人及你
无人及你 2021-02-05 19:16

Been doing Java for number of years so haven\'t been tracking C++. Has finally clause been added to C++ exception handling in the language definition?<

15条回答
  •  走了就别回头了
    2021-02-05 19:55

    C++ destructors make finally redundant. You can get the same effect by moving the cleanup code from finally to corresponding destructors.

提交回复
热议问题