yeshusheng 发表于 2016-11-6 22:50 += ,-=,*=,/=都自带强转
public class test { public static void main(String[] args) { int a = 10; int b = (a++) + (++a) + (a * 10); System.out.println(b); } }