比如说 费伯纳西数列 要只能输入正数
public static int fib(int n) throws MyException {
if(n<=-1) {
throw new MyException("需要正数");
}else if(n==1) {
return 1;
}else if(n==0) {
return 0;
}else {
return fib(n-1)+fib(n-2);
}
}
有其他的方法 需要只写在方法里面的话 不知道有没有类似的用法呢?
错误讯息
No enclosing instance of type Trn1 is accessible. Must qualify the allocation
with an enclosing instance of type Trn1 (e.g. x.new A()
where x is an instance of Trn1).