using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace 类型转化
{
class Program
{
static void Main(string[] args)
{
double d = 5673.74;
int i;
//强制转化double为int
i = (int)d;
Console.WriteLine(i);
Console.ReadLine();
//c#类型转化分为两种形式
//1.显式类型转化:强制类型转换。会存在数据丢失
//2.隐式类型转化:c#默认的安全方式进行转化,不会导致数据丢失。
}
}
}
网友评论