java137-java异常初识

//java异常初识
public class test78 {
    public static void main(String[] args) {
        countArraylength( -1 );
    }
 
    public static int countArraylength(int length) {
        int[] nums = new int[length];
        return nums.length;
    }
}
运行结果
 

你可能感兴趣的:(java,开发语言)