变量问题
using System;using System.Collections.Generic;
using System.Text;
namespace test
{
class Program
{
static void Main(string[] args)
{
int x = 65;
Console.WriteLine("++operator:{0},--operator:{1}", ++x, --x);
}
}
}
--x后为什么还是65?
2008-07-31 20:08