码迷,mamicode.com
首页 > 其他好文 > 详细

5月12日 结构体

时间:2016-05-13 19:04:22      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:

一、结构体定义:

结构体一般定义在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(); } } }

 

5月12日 结构体

标签:

原文地址:http://www.cnblogs.com/juyangchao12/p/5490265.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!