2024年5月12日

摘要: 处理异常五个关键字: try、catch、finally、throw、throws try{监控区域} catch(想要捕获的异常类型){sout输入内容} 例: public static void main(String[] args) { int a=1; int b=0; try{ //tr 阅读全文
posted @ 2024-05-12 16:12 anonymity。 阅读(4) 评论(0) 推荐(0) 编辑
 
摘要: package Demo10; import java.applet.Applet; public class Test { public static void main(String[] args) { //没有名字初始化类,不用将实例保存到变量中 new Apple().eat(); new 阅读全文
posted @ 2024-05-12 10:52 anonymity。 阅读(4) 评论(0) 推荐(0) 编辑