首页 > 代码库 > 结构体20140827
结构体20140827
- 结构体 定义自己的类型my tape
- 在main括号外面加public stuct ** **为自己的类型 下边加大括号 括号里是自己的类型里面包括的对象
- 在里边写 public +类型+变量名 类型里面可以加自己创建的类型
- 把 中间的class 去掉,新添加的其他新建项也可以用 这个类型
public struct snakepoint { public int x; public int y; } static void Main(string[] args) { snakepoint s = new snakepoint(); s.x = 5; s.y = 10; ArrayList a = new ArrayList(); a.Add(s); Console.WriteLine((snakepoint )a[0].x+","+((snakepoint)a[0]).y);
{ student lch = new student(); lch.no = 1; lch.name = "xxx"; lch.Cshap = 90; lch.web = 78; lch.datebase = 83; lch.sum = lch.Cshap + lch.web + lch.datebase; Console.WriteLine(("学号·{0}姓名·{1}Cshap·{2}web·{3}datebase·{4}总分·{5}"), lch.no, lch.name, lch.Cshap, lch.web, lch.datebase, lch.sum); } struct student { public int no; public string name; public int Cshap; public int web; public int datebase; public int sum; }
结构体20140827
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。