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