Discuss / Java / 练习

练习

Topic source

保持热爱

#1 Created at ... [Delete] [Delete and Lock User]

public static void testThrowsException(int num) {
if (num < 0) {
throw new IllegalArgumentException();
}
System.out.println(num);
}


  • 1

Reply