zoukankan      html  css  js  c++  java
  • 代码清单4-2 可空类型的装箱和拆箱行为 代码清单4-3 使用?修饰符来改写代码清单4-2

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Collections;
    
    namespace ConsoleApplication1
    {
        class Program
        {
            static void Main(string[] args)
            {
                Nullable<int> nullable = 5;
                object boxed = nullable;
                Console.WriteLine(boxed.GetType());
                int normal = (int)boxed;
                Console.WriteLine(normal);
                nullable = (Nullable<int>)boxed;
                Console.WriteLine(nullable);
                nullable = new Nullable<int>();
                boxed = nullable;
                Console.WriteLine(boxed == null);
                nullable = (Nullable<int>)boxed;
                Console.WriteLine(nullable.HasValue);
                Console.ReadKey();
            }
        }
    }
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Collections;
    
    namespace ConsoleApplication1
    {
        class Program
        {
            static void Main(string[] args)
            {
                int? nullable = 5;
                object boxed = nullable;
                Console.WriteLine(boxed.GetType());
                int normal = (int)boxed;
                Console.WriteLine(normal);
                nullable = (int?)boxed;
                Console.WriteLine(nullable);
                nullable = new int?();
                boxed = nullable;
                Console.WriteLine(boxed == null);
                nullable = (int?)boxed;
                Console.WriteLine(nullable.HasValue);
                Console.ReadKey();
            }
        }
    }
  • 相关阅读:
    怎么获取数组中的对象的某一项之和
    原型链
    js的事件循环(Eventloop) 机制/js的宏任务微任务执行顺序
    怎么替换数组中对象的属性
    求对象所有值的和
    sequelize中duplicating:false的使用
    WebSocket
    轮播

    ssl tsl
  • 原文地址:https://www.cnblogs.com/liuslayer/p/6963110.html
Copyright © 2011-2022 走看看