大家帮个忙 谢了!
using System;namespace SelfPlusTest
{
class Program{
static void Main(){
int x=2;
int y=x++; (我知道是先使用后自增)
Console.WriteLine("y={0}",y);
y=++x; (这我也知道是先自增后使用,但究竟是自增多少?是否要继承上一步骤的Y值?)
Console.WriteLine("y={0}",y);
Console.Read();
关键是自增不能理解