美文网首页
初识第四篇

初识第四篇

作者: 青木川_ | 来源:发表于2018-10-30 21:01 被阅读3次

    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#默认的安全方式进行转化,不会导致数据丢失。

            }

        }

    }

    相关文章

      网友评论

          本文标题:初识第四篇

          本文链接:https://www.haomeiwen.com/subject/hryntqtx.html