摘要: ## 目录 linux的文件系统是采用级层式的树状目录结构,在此结构中的最上层是根目录“/”,然后在此目录下再创建其他的目录。 ![image-20230709165612457](https://img2023.cnblogs.com/blog/2355908/202307/2355908-202 阅读全文
posted @ 2023-07-09 18:06 蜀道,难 阅读(53) 评论(0) 推荐(1) 编辑
摘要: ## 为什么需要异常 ### 引出 ```java public static void main(String[] args) { int a = 10; int b = 0; int number = a / b; System.out.println("程序继续向下运行"); } ``` 上面 阅读全文
posted @ 2023-07-09 01:11 蜀道,难 阅读(183) 评论(0) 推荐(0) 编辑