首页 > 代码库 > i++和i--运算符优先级
i++和i--运算符优先级
1、问题背景
/** * 测试i++和i-- */ package com.you.model; /** * @author YouHaiDong * @date 2014-08-16 */ @SuppressWarnings("unused") public class AddReduce { static { int x = 10; } static int x; static int y; public static void addReduce() { y = x++ + ++x; } /** * @param args */ public static void main(String[] args) { x--; addReduce(); System.out.println(x + y++ + x); } }
2、问题分析
(1)这里的x是一个局部变量,只对这里有影响
static { int x = 10; }
static int x; static int y;
(3)由于初始化时x=0,执行x--,x就变为-1
x--;
(4)在调用“addReduce();”方法时,y=0,x=1
public static void addReduce() { y = x++ + ++x; }
System.out.println(x + y++ + x);
3、分析结果
由2分析出,该代码运行的结果为:2
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。