C#Convert.ToInt32(bool)方法-将bool值转换为int
C#Convert.ToInt32(bool)方法
Convert.ToInt32(bool)方法用于将特定的布尔值(布尔值)转换为其等效的整数(32位带符号整数)。
语法:
int Convert.ToInt32(bool value);
它接受布尔值/变量作为参数,并返回其等效的带符号整数。
示例
Input:
bool a = true;
Output:
1码:
using System;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Convert.ToInt32(true) : " + Convert.ToInt32(true));
Console.WriteLine("Convert.ToInt32(false): " + Convert.ToInt32(false));
bool a = true;
bool b = false;
Console.WriteLine("Convert.ToInt32(a) : " + Convert.ToInt32(a));
Console.WriteLine("Convert.ToInt32(b): " + Convert.ToInt32(b));
//按ENTER退出
Console.ReadLine();
}
}
}输出结果
Convert.ToInt32(true) : 1 Convert.ToInt32(false): 0 Convert.ToInt32(a) : 1 Convert.ToInt32(b): 0
热门推荐
6 保研的祝福语简短
10 年轻20岁祝福语简短
11 朋友结婚祝福语信息简短
12 女孩婚礼贺卡祝福语简短
13 30段点歌简短祝福语
14 虎年春节祝福语图文简短
15 写给后妈祝福语大全简短
16 简短回复生日祝福语
17 校长送毕业祝福语简短
18 毕业立体贺卡祝福语简短