在 C# 中将对象转换为整数

Muhammad Maisam Abbas 2024年2月16日
  1. 在 C# 中使用 (int) 类型转换将对象转换为整数
  2. 使用 C# 中的 int.Parse() 函数将对象转换为整数
  3. 使用 C# 中的 Convert.ToInt32() 函数将对象转换为 Int
在 C# 中将对象转换为整数

本教程将讨论在 C# 中将数据类型转换为整数数据类型的方法。

在 C# 中使用 (int) 类型转换将对象转换为整数

类型转换是一种将数据从 C# 中的一种数据类型转换为另一种相似数据类型的技术。(int) 表达式用于将数据类型转换为 C# 中的整数数据类型。(int) 表达式仅可用于浮点、双精度和十进制等数字数据类型。我们不能将 (int) 表达式与任何非数字数据类型一起使用。以下代码示例向我们展示了如何使用 C# 中的 (int) 表达式将数值数据类型转换为整数数据类型。

using System;

namespace convert_to_int {
  class Program {
    static void Main(string[] args) {
      float f = 1.01f;
      int i = (int)f;
      Console.WriteLine(i);
    }
  }
}

输出:

1

在上面的代码中,我们初始化了浮点数变量 f,并使用 C# 中的 (int) 类型转换表达式将其转换为整数 i

使用 C# 中的 int.Parse() 函数将对象转换为整数

int.Parse() 函数将字符串转换为 C# 中的整数数据类型。它使用包含整数等效数据的字符串变量作为参数,并返回整数值。如果字符串变量的值不等于整数数据类型,则 int.Parse() 函数会给出异常。下面的代码示例向我们展示了如何使用 C# 中的 int.Parse() 函数将字符串数据类型转换为整数数据类型。

using System;

namespace convert_to_int {
  class Program {
    static void Main(string[] args) {
      string s = "1";
      int i = int.Parse(s);
      Console.WriteLine(i);
    }
  }
}

输出:

1

在上面的代码中,我们用等效值 1 初始化了字符串变量 s,并使用 C# 中的 int.Parse(s) 函数将其转换为整数变量 i

使用 C# 中的 Convert.ToInt32() 函数将对象转换为 Int

Convert提供了在 C# 中不同基本数据类型之间进行转换的功能。Convert.ToInt32() 函数将任何数据类型转换为整数数据类型。Convert.ToInt32() 函数将数据类型作为参数,并返回 32 位整数等效值。以下代码示例向我们展示了如何使用 C# 中的 Convert.ToInt32() 函数将任何数据类型转换为整数数据类型。

using System;

namespace convert_to_int {
  class Program {
    static void Main(string[] args) {
      string s = "1";
      int i = Convert.ToInt32(s);
      Console.WriteLine(i);
    }
  }
}

输出:

1

在上面的代码中,我们将字符串变量 s 初始化为整数等效值 1,并使用 C# 中的 Convert.ToInt32(s) 函数将其转换为整数变量 i

Muhammad Maisam Abbas avatar Muhammad Maisam Abbas avatar

Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.

LinkedIn

相关文章 - Csharp Integer