如何仅在未引发异常时打印内容?

How to print something only if an Exception is not raised?

我是 java 的新手,但对 python 非常熟悉。我正在学习 try-catch 块。如果没有异常,我需要打印一些东西。

要在 python 中做到这一点,我们可以使用 elsetry - except 块。我需要知道在 java 中可以使用什么方法来完成这个任务。

完成 python 代码。

try:
    n = int(input())
except Exception as e:
    print(e)
else:
    print("No exception is raised")

不完整的 java 代码来做同样的事情。

import java.util.*;

class HelloWorld {
    public static void main(String[] args) {
        
        try {
            Scanner sc = new Scanner(System.in);
            int n = sc.nextInt();
        }
        catch(Exception e) {
            System.out.println(e);
        }
        // need to add something
    }
}

您可以在 finally 块中编写该代码,如下所示

import java.util.*;
    
    class HelloWorld {
        public static void main(String[] args) {
            boolean excep = false;
            try {
                Scanner sc = new Scanner(System.in);
                int n = sc.nextInt();
            }
            catch(Exception e) {
                System.out.println(e);
                excep = true;
            }
            finally{
               if(!excep){
                  System.out.println("no exceptions");
               }
            }
        }
    }