数组 查找下标: class Demo1 { public static void main(String[] args) { int [] arr = {1, 3, 23,...
IP属地:河南
数组 查找下标: class Demo1 { public static void main(String[] args) { int [] arr = {1, 3, 23,...
class A{ public String show(D obj){ return ("A and D"); } public...
break 关键词 如果程序运行到break,就会跳出当前的分支【switch】或者循环【while,do-while,for】,直接执行到 结构之后的代码 continue...
循环结构 循环结构的三种方式: while循环 while (循环条件 true/false) { 循环体; (循环条件变更) } 执行流程: ...
分支结构 int choose = 0; Scanner sc = new Scanner(sysotem in); choose = sc.nextInt(); switc...
1,变量和运算符 整型 byte 1字节 short 2字节 int 4字节 long 8字节 浮点型 float 4字节 double 8字节 字符型 char 2字节 b...