摘要:
package com.itheima.scanner; import java.util.Scanner; public class ScannerDemo1 { public static void main(String[] args) { //1.导包 Scanner sc=new Scan 阅读全文
摘要:
三元运算符介绍: 格式:条件表达式?值1:值2; 执行流程:首先计算关系表达式的值,如果值为true,返回值1,如果值为false,返回值2 代码: package com.itheima.operator; public class Operator6 { public static void m 阅读全文
摘要:
&:前后均为true,结果才为true |:只要多个条件中有一个为true,结果就是true ^(逻辑异或):前后结果相同时返回false,结果不同时返回true &&(短路与):左边为false,右边则不执行 ||(短路或):左边为true,右边就不执行 阅读全文
摘要:
判断相当用“==”双等于号 package com.itheima.operator;public class Qperator4 { public static void main(String[] args) { int a=10; int b=5; System.out.println(a=b 阅读全文
摘要:
扩展的赋值运算符隐含了强制类型转换 package com.itheima.operator; public class Qperator3 { public static void main(String[] args) { //目标:掌握扩展赋值运算符的使用 //+= //需求类似于收红包 do 阅读全文