Java的条件判断一个if语句包含一个布尔表达式和一条或多条语句。一个ifintscore=88;if(score>60){System.out.println("及格");}输出及格ifelseintscore=50;if(score>60){System.out.println("及格");}else{System.out.println(&
分类:
编程语言 时间:
2020-02-21 18:37:46
阅读次数:
62
package myproject; public class TestWhile { public static void main(String[] args) { //while循环 int b=1;//初始化 while(b<=10) {//条件判断 System.out.println(b ...
分类:
其他好文 时间:
2020-02-21 16:24:03
阅读次数:
72
package myproject; public class Switch_Case { public static void main(String[] args) { double d=Math.random(); int e=(int)(d*5); System.out.println(e) ...
分类:
其他好文 时间:
2020-02-21 14:23:58
阅读次数:
57
一.当子类没有定义方法时,this对象会寻找父类中的方法 二. package com.cracker; class Parent{ public void action() { } public void sleep() { System.out.println("父类:嗷呜"); } } cla ...
分类:
其他好文 时间:
2020-02-21 12:47:29
阅读次数:
206
程序的最大魅力可能就是循环,循环也是所有编程开发者使用最频繁的语句。如果想要同样的操作执行多次,,就需要使用循环结构。Java中有三种主要的循环结构:while循环do…while循环for循环while循环while(//如果条件成立){//执行循环}Java代码例子inti=0;while(i<10){System.out.println(i);i=i+1;}输出0123456789do
分类:
编程语言 时间:
2020-02-20 18:41:07
阅读次数:
92
快捷键 Ctrl+Alt+T:可以将代码包在一块内,例如try/catch Shift+Enter,向下插入新行psvm/sout,main/System.out.println(); Ctrl+J,查看更多Ctrl+Shift+F,全局查找Ctrl+F,查找/Shift+F3,向上查找/F3,向下 ...
分类:
其他好文 时间:
2020-02-20 13:38:05
阅读次数:
46
方法和结果 说明: 1文件夹 if(file.getParentFile().exists()) {//判断文件夹是否存在 System.out.println("文件夹存在!!"); }else { System.out.println("文件夹不存在!!"); file.getParentFil ...
分类:
编程语言 时间:
2020-02-20 09:59:35
阅读次数:
87
多态 1 程序中的多态; 声明父类,实例化子类; 要建的类 对动物喂食 package com.lv.tai; public class Person { //给动物喂食 public void feed(Dog dog){ System.out.println("喂食"); dog.eat(); ...
分类:
其他好文 时间:
2020-02-20 00:06:37
阅读次数:
80
位运算符 左移:<< 例子: 3<<2 = 12 -> 3*2*2=12 m<<n = m * 2n System.out.println(4 << 4);//64 System.out.println(2 << 30);//-2147483648 int的范围-2147483648~2147483 ...
分类:
编程语言 时间:
2020-02-19 16:51:31
阅读次数:
85
1、使用构造器创建bean 1.1、使用无参构造器创建 package com.ly.spring; public class Person { private String name; public void say(String name) { System.out.println("你好,我叫 ...
分类:
编程语言 时间:
2020-02-19 13:08:00
阅读次数:
78