Why aren't variables declared in “try” in scope in “catch” or “finally”?

后端 未结 28 2569
时光说笑
时光说笑 2020-11-28 03:44

In C# and in Java (and possibly other languages as well), variables declared in a \"try\" block are not in scope in the corresponding \"catch\" or \"finally\" blocks. For e

28条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-28 04:13

    In C++ at any rate, the scope of an automatic variable is limited by the curly braces that surround it. Why would anyone expect this to be different by plunking down a try keyword outside the curly braces?

提交回复
热议问题