class func { public static void main(String[] args) { byte a = 1; System.out.print(a += 1); byte f = a + 1; System.out.print(f); } }
2, 2
2, 错误
1, 错误
1, 2