小白学java——运算符续

package operation;
//逻辑运算符的使用
public class Demo4 {
    public static void main(String[] args) {
        boolean a = true;
        boolean b = false;
        System.out.println("a&&b:"+(a&&b));//a and b,即a,b同时为真才为真,同时为假才为假
        System.out.println("a||b:"+(a||b));//a or b,即a,b有一方为真就为真,两者都假才为假
        System.out.println("!a:"+(!a));//与值相反
        System.out.println("--------------------------");
        //短路运算,即若a&&b中a为假,则不用判断b的值就为假
        int c = 3;
        boolean d = (c<2)&&(c++<3);
        System.out.println(c);//若在判断c<2为假之后,在判断c++<3,那c的值应该输出为4,看结果可知没有判断c++<3,这就是短路运算
        System.out.println(d);

    }
}
-------------------------------------
a&&b:false
a||b:true
!a:false
--------------------------
3
false

进程已结束,退出代码为 0


-------------------------------------


//连接符以及三元运算符的使用

package operation;

public class Demo5 {
    public static void main(String[] args) {
        int a = 10;
        int b = 20;
        System.out.println(""+a+b);//字符(此例中的字符为"")若在连接符+之前,则后面的+也表示连接
        System.out.println(a+b+"");//字符(此例中的字符为"")若在连接符+之后,则前面的+表示运算符
        System.out.println("--------------------");
        int score = 100;
        String mathScore = score < 60 ? "不及格":"及格";//三元运算符的使用,满足条件输出第一个,否则输出第二个
        System.out.println(mathScore);
    }
}
----------------------------------------
1020
30
--------------------
及格

进程已结束,退出代码为 0

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值