摘要:
抛出异常 捕获异常 ** 异常处理五个关键字:try catch finally throw throws ** package com.le.exception; public class Test { public static void main(String[] args) { try{ n 阅读全文
摘要:
jdk5引入的一种主要用于数组或集合的增强型for循环 package com.le.base; public class demo12 { public static void main(String[] args) { int number[] ={10,20,30,40,50}; //遍历数组 阅读全文