标签: java while-loop increment
package me.name.ush; public class ush { public static void main(String[]args) { int x=1; while (x<=8) { x=3*x++; System.out.println(x); } } }
控制台输出为3,9,而我预期会有所不同。有人可以向我解释为什么++增量不影响变量。