摘要: 数组: 相同类型的数据(可以是基本类型也可以是引用类型)的集合,方便管理。 定义: 数据类型[] 数组名字; 初始化: 创建数组,赋值 静态初始化: import java.util.*; class test{ public static void main(String[] args){ int 阅读全文
posted @ 2019-09-23 18:23 不咬人的兔子 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 1. 顺序结构 2. 分支结构 if(){ } else{ } switch: class test{ public static void main(String[] args){ int x = 6; switch(x){ case 1: System.out.println("a"); bre 阅读全文
posted @ 2019-09-23 09:29 不咬人的兔子 阅读(657) 评论(0) 推荐(0) 编辑