zoukankan      html  css  js  c++  java
  • 包装和解包

    int变量可以用ToString方法隐式的转换为一个System.Object对象,这个过程叫包装;一个System.Object也可以转换为一个值变量,这个过程叫解包

    1 using System;
    2  using System.Collections.Generic;
    3 using System.Linq;
    4 using System.Text;
    5
    6 namespace ConsoleApplication2
    7 {
    8 class Program
    9 {
    10 static void Main(string[] args)
    11 {
    12 int myInt1 = 10;
    13
    14 //包装
    15 Console.WriteLine("myInt1.ToString() = " + myInt1.ToString());
    16 Console.WriteLine("myInt1.GetType() = " + myInt1.GetType());
    17
    18 int myInt2 = 10;
    19 object myObject = myInt2;
    20 Console.WriteLine("myInt2 =" + myInt2);
    21 Console.WriteLine("myObject =" + Int2);
    22
    23 //解包
    24
    25 int myInt3 = (int)myObject;
    26 Console.WriteLine("myInt3 = " + myInt3);
    27 }
    28 }
    29 }
  • 相关阅读:
    js的元素对象
    js实现在末尾添加节点
    js实现点击增加文本输入框
    js的DOM对象
    js其它
    js实现99乘法表
    js
    http的六种请求方法
    11.进制
    10.Debug
  • 原文地址:https://www.cnblogs.com/djcsch2001/p/2035601.html
Copyright © 2011-2022 走看看