How does return work in try, catch, finally in Java?

前端 未结 7 1481
北海茫月
北海茫月 2021-02-01 16:26

I can\'t understand exactly how return works in try, catch.

  • If I have try and finally without
7条回答
  •  借酒劲吻你
    2021-02-01 16:59

    When using a public functions other than void functions, you should return something or your function won't.

提交回复
热议问题