java基础学习:自增,自减运算符

  1. ++与--只能操作变量不能操作字面量
  2. 注意事项

     


package com.itheima.operator;

public class Operator2 {
public static void main(String[] args) {
int i = 1;
int res = ++i;//放在变量前面先运算在赋值
System.out.println(i);
System.out.println(res);

System.out.println("---------------------------------------------------------------");

int a=12;
int res2=a++;//放在变量后面先赋值在运算
System.out.println(a);
System.out.println(res2);
System.out.println("---------------------------------------------------------------");



//符号在前,先运算后用
//符号在后,先用后运算
int m=5;
int n=3;
//m
//n
//
int res1=++m- --m+ m-- - ++n+ n-- +3;//符号在前,先运算后用;符号在后,先用后运算
System.out.println(m);
System.out.println(n);
System.out.println(res1);
}

}
 

 

posted @ 2023-11-16 09:10  小彭先森  阅读(5)  评论(0编辑  收藏  举报