zoukankan      html  css  js  c++  java
  • 5月12日 结构体

    一、结构体定义:

    结构体一般定义在Main函数上面,位于Class下面,作为一个类;一般情况Struct定义在Main函数前面,Main函数里面的地方都可以使用,参数前面加上public代表公用变量。

    二、格式:

             struct +结构体的名称

             {

                public int+变量名;

                public string+变量名;

                public int+变量名;

             }


    namespace
    _5月12日_结构体 { class Program { struct student { public int num; public string name; public string sex; public int[] qq; public One oone; } struct One { public string aa; public int bb; } static void Main(string[] args) { student stu = new student(); stu.oone.aa = "123"; stu.oone.bb = 123; stu.qq = new int[10]; Console.WriteLine(stu.qq[0]);//中括号里没有内容显示non //初始化结构体 //student stu = new student(); //stu.num = 1; //stu.name = "张三"; //stu.sex = "男"; //student stu2 = new student(); //stu2.num = 2; //stu2.name = "李四"; //stu2.sex = "女"; Console.ReadLine(); } } }
  • 相关阅读:
    Centos7.x做开机启动脚本
    贝叶斯方法之一
    R程序包
    c#调用R
    感悟--不可抗拒的行为
    IP等级
    词语
    关于editplus设置java和c#
    csc命令
    editplus配置csharp
  • 原文地址:https://www.cnblogs.com/juyangchao12/p/5490265.html
Copyright © 2011-2022 走看看