zoukankan      html  css  js  c++  java
  • 索引

    using System;

    using System.Collections.Generic;

    using System.Linq;

    using System.Text;

    namespace _9.索引

    {

        class Program

        {

            static void Main(string[] args)

            {

                int[] values = { 3,5,7,9};

                int i = values[1];

                Person p1 = new Person();

                p1[1] = "小明";

                Console.WriteLine(p1[1]+p1[2]);

                Console.WriteLine(p1["tom",3,9]);//索引也可以重载。

                Console.ReadKey();

            }

        }

        class Person

        {

            private string FirstName="大毛";

            private string SecondName="二毛";

            public string this[string name, int x, int y]

            {

                get

                {

                    return name + x + y;

                }

            }

            public string this[int index]//中括号里的就是索引。

            {

                get

                {

                    if (index == 1)

                    {

                        return FirstName;

                    }

                    else if (index == 2)

                    {

                        return SecondName;

                    }

                    else

                    {

                        throw new Exception("这是个错误的序号啊亲!");

                    }

                }

                set

                {

                    if (index == 1)

                    {

                        FirstName = value;

                    }

                    else if (index == 2)

                    {

                        SecondName = value;

                    }

                    else

                    {

                        throw new Exception("这是个错误的序号啊亲!");

                    }

                }

            }

        }

    }

  • 相关阅读:
    c#mysql批量更新的两种方法
    批处理上传错误
    c#关于Mysql MySqlBulkLoader 批量上传
    findViewById(R.id.btn_first) 给写成 R.layout.
    linearlayout 中ImageView 居中等问题
    c#npoi 报错Cannot get a numeric value from a text cell 的解决
    c#Dapper 批量插入Mysql
    c#NPOI读取excel 比interop和Microsoft.Jet.OLEDB.4.0 之类 的好的多
    Android程序入口以及项目文件夹的含义和使用总结—入门
    百度地图sdk sha1秘钥获取有种想吐的赶脚
  • 原文地址:https://www.cnblogs.com/gyt-xtt/p/3639047.html
Copyright © 2011-2022 走看看