package a;class Test{int a,int b} int div(int a ,int b) throws int []arr = new int [a]; System.out.println (arr[4]);return a/b;}
时间: 2023-07-31 18:06:37 浏览: 70
Test.class
这段代码存在语法错误。首先,Test类中的字段应该用逗号分隔而不是分号。其次,在div方法中,throws关键字后应该跟一个异常类型,而不是一个整型数组。最后,println方法应该在语句块中,而不是在方法签名中。正确的代码应该是这样的:
```
package a;
class Test {
int a, b;
int div(int a, int b) throws ArithmeticException {
int[] arr = new int[a];
System.out.println(arr[4]);
return a / b;
}
}
```
阅读全文