class TestI
{
public static void main(String [] args)
{
int i=0;
i=i++ + ++i;
System.out.println(i);
}
}这段程序结果为2,请问其执行过程是什么样的!