Java编译报错:意外的类型

先上代码 后续更新

1 public class IncidentType {
2     public static void main(String[] args) {
3         int a = 3;
4         int b = ++( (++a)-- );
5         System.out.println(a);
6         System.out.println(b);
7     }
8 }

 

 

posted @ 2017-07-28 17:00  valuestack  阅读(909)  评论(0编辑  收藏  举报