码迷,mamicode.com
首页 > 编程语言 > 详细

小白自学JAVA 一元运算 和 逻辑运算

时间:2020-01-30 19:24:32      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:keyword   and   focus   contain   ati   运算   head   逻辑   stat   

自增 自减 一元运算

package base;
?
public class Demo02 {
   public static void main(String[] args) {
       // ++ -- 自增 自减 一元运算符
       int a=3;
       int b1=++a;//++在前则a先+1,在将a赋值给b |
       int b2=a--;//--在后则先将a赋值给b,然后a自减1|
       System.out.println(b1);
       System.out.println(b2);
       System.out.println(a);
  }
}

逻辑运算符

package base;
?
public class Demo03 {
   public static void main(String[] args) {
       //逻辑运算符
       boolean a = true;
       boolean b = false;
       System.out.println(a&&b);//与 and
       //两个都为true则为true!否则为false!
       System.out.println(a||b);//或 or
       //其中1个为ture则为ture!
       //或运算 短路运算 当第一个条件为false时,不运行后面的语句!
       System.out.println(!(a&&b));//非 取反
       System.out.println(!(a||b));//非 取反
  }
}

谁有推荐的JAVA入门视频教程啊~

小白自学JAVA 一元运算 和 逻辑运算

标签:keyword   and   focus   contain   ati   运算   head   逻辑   stat   

原文地址:https://www.cnblogs.com/av18/p/12243210.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!