2021-11-13-07 自增自减、Math类、与或非

本文介绍了Java中的自增自减运算符、Math类的幂运算、逻辑运算符(与、或、非)、算术运算符(加减赋值、连接符)以及三元运算符的使用。同时,讲解了包名规范以及import语句的使用,强调了阿里巴巴编码规范中关于包名的建议。
摘要由CSDN通过智能技术生成

自增自减以及Math类

package operator;

public class Demo02 {
    public static void main(String[] args) {
        //++    --   自增自减   一元运算符
        int a = 3;
        int b = a++;
        System.out.println(a);
        int c = ++a;
        System.out.println(a);
        System.out.println(b);
        System.out.println(c);
        //幂运算 Math类    很多运算需要用到工具类操作
        double pow = Math.pow(2, 4);
        System.out.println(pow);
    }
}

与或非

package operator;

public class Demo02 {
    public static void main(String[] args) {
        //与(and)  或(or)  非(取反)
        boolean a = true;
        boolean b = false;
        System.out.println(a&&b);//逻辑与运算  两个变量都为真,结果为真
        System.out.println(a||b);//有一真即为真
        System.out.println(!(a&&b));//如果是真则为假,如果是假则为真

        //短路运算

        int c = 5;
        boolean d = (c<4)&&(c++<10);
        System.out.println(c);
        System.out.println(d);
    }
}

package operator;

public class Demo02 {
    public static void main(String[] args) {
        int a = 10;
        int b = 20;
        a+=b;//a=a+b
        System.out.println(a);
        a-=b;//a=a-b
        System.out.println(a);
        //字符串连接符+,string
        System.out.println(""+a+b);//字符串在前面的会进行拼接
        System.out.println(a+b+"");//字符串在后面的会进行运算
    }
}

package operator;

public class Demo02 {
    public static void main(String[] args) {
        //三元运算符  x?y:z
        //如果x==true,则结果为y,否则结果为z
         int score = 80;
         String type = score <60?"不及格":"及格";//需要掌握
        System.out.println(type);
    }
}

包机制

包名规范:一般公司域名倒置作为包名

import com.shang.*;

*包括包里面的所有东西;

//阿里巴巴规范手册

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值