C# 中的增量(++)和减量(--)运算符是什么?


增量运算符

若要增量 C# 中的某个值,可以使用增量运算符,即前增量和后增量运算符。

以下是一个示例 -

示例

using System;

class Demo {
   static void Main() {
      int a = 250;
      Console.WriteLine(a);

      a++;
      Console.WriteLine(a);

      ++a;
      Console.WriteLine(a);

      int b = 0;
      b = a++;
      Console.WriteLine(b);
      Console.WriteLine(a);

      b = ++a;
      Console.WriteLine(b);
      Console.WriteLine(a);
   }
}

减量运算符

若要减量 C# 中的某个值,可以使用减量运算符,即前减量和后减量运算符。

以下是一个示例 -

示例

using System;

class Demo {
   static void Main() {
      int a = 250;
      Console.WriteLine(a);

      a--;
      Console.WriteLine(a);

      --a;
      Console.WriteLine(a);

      int b = 0;
      b = a--;
      Console.WriteLine(b);
      Console.WriteLine(a);

      b = --a;
      Console.WriteLine(b);
      Console.WriteLine(a);
   }
}

更新于: 20-Jun-2020

455 次浏览

启动你的 职业

完成课程即可获得认证

开始
广告