摘要: package li; import java.util.Scanner; public class Demo3 { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.o 阅读全文
posted @ 2021-10-19 14:42 xxm555 阅读(23) 评论(0) 推荐(0) 编辑
摘要: package li; import java.util.Scanner; public class Demo2 { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.o 阅读全文
posted @ 2021-10-19 14:41 xxm555 阅读(22) 评论(0) 推荐(0) 编辑
摘要: package li; import java.util.Scanner; public class Demo1 { public static void main(String[] args) { //创建一个扫描器对象,用于接收键盘数据 Scanner scanner = new Scanner 阅读全文
posted @ 2021-10-19 14:40 xxm555 阅读(21) 评论(0) 推荐(0) 编辑
摘要: package base.baidua; public class SwitchDemo2 { public static void main(String[] args) { //JDK7特性switch支持String类型 String name ="臭"; switch (name){ cas 阅读全文
posted @ 2021-10-16 20:56 xxm555 阅读(32) 评论(0) 推荐(0) 编辑
摘要: package base.baidua; public class SwitchDemo1 { public static void main(String[] args) { //case穿透,//switch匹配具体的值 char grade = 'K'; switch (grade){ cas 阅读全文
posted @ 2021-10-16 20:48 xxm555 阅读(40) 评论(0) 推荐(0) 编辑
摘要: package base; /** @author xxx555 @version 1.0 @since 1.8 */ public class Doc { //javadoc命令是生产API文档的 String name; /** @author xxx555 @param name @retur 阅读全文
posted @ 2021-10-12 23:02 xxm555 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 包机制 一般用倒置的公司域名作为包名 定义包 package 导入包 import *通配符 阅读全文
posted @ 2021-10-12 22:10 xxm555 阅读(12) 评论(0) 推荐(0) 编辑
摘要: package operator; public class Demo5 { //与 或 非 public static void main(String[] args) { boolean a = true; boolean b = false; System.out.println("a && 阅读全文
posted @ 2021-10-12 21:37 xxm555 阅读(24) 评论(0) 推荐(0) 编辑
摘要: package operator; public class Demo4 { public static void main(String[] args) { //++自增 --自减 一元运算符 int a = 6; int b = a++;//执行完代码,先给b赋值,再自增 //a=a+1 Sys 阅读全文
posted @ 2021-10-11 23:08 xxm555 阅读(252) 评论(0) 推荐(0) 编辑
摘要: package operator; public class Demo3 { public static void main(String[] args) { //关系运算输出为布尔值:正确、错误 int a =5; int b =10; int c = 12; //取余,模运算 System.ou 阅读全文
posted @ 2021-10-11 23:07 xxm555 阅读(36) 评论(0) 推荐(0) 编辑