简体   繁体   中英

Performance : Checked and unchecked exceptions in JAVA

I know the advantage of checked exceptions: Force developers to declare all exceptions thrown by their functions.

But I was wondering:

-Do checked exceptions affect the performance positively?

-If so, Is a C# program slower than JAVA in case of exceptions?

Checked exceptions only have restrictions at compile time. At runtime, all types of exceptions behave the same way.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM