zoukankan      html  css  js  c++  java
  • C#中实例一个自定义类的数组的做法

    /类
    public class BarChartValue
    {
        public BarChartValue()
        {

        }
        public BarChartValue(string MyName, int Myvalue)
        {
            Name = MyName;
            MValue = Myvalue;
        }
        private string name;
        public string Name
        {
            get
            {
                return name;
            }
            set
            {
                name = value;
            }
        }

        private int mvalue;
        public int MValue
        {
            get
            {
                return mvalue;
            }
            set
            {
                mvalue = value;
            }
        }
    }

    1.
            BarChartValue[] BarChartValue ={
            new BarChartValue("第一个仓库",1),
            new BarChartValue("第一个仓库",2)
            };
    2.

            BarChartValue[] BarChartValue= new BarChartValue[2];
            BarChartValue[0] = new mytest();
            BarChartValue[0].Name = "";
            BarChartValue[1] = new mytest();
            BarChartValue[1].Name = "";
    3.
            for (int i = 0; i < 5; i++)
            {
                BarChartValue[i] = new BarChartValue();
                BarChartValue[i].Name = "";
            }

    用法:
    用方法 :
    Render("BarChartValue);
    方法:
    public string Render(PieChartValue[] Mydata)

  • 相关阅读:
    南邮NOJ 树木枝干问题I
    【HDOJ】1501 Zipper
    【HDOJ】1556 Color the ball
    【HDOJ】1422 重温世界杯
    【HDOJ】1421 搬寝室
    【HDOJ】1455 Sticks
    【HDOJ】1466 计算直线的交点数
    【HDOJ】3308 LCIS
    【POJ】2528 Mayor's posters
    【POJ】3468 A Simple Problem with Integers
  • 原文地址:https://www.cnblogs.com/cuihongyu3503319/p/759687.html
Copyright © 2011-2022 走看看