码迷,mamicode.com
首页 > Windows程序 > 详细

C#中的结构,练习

时间:2014-12-13 23:19:04      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:ar   sp   on   ad   as   line   new   br   c#   

namespace STRUCT_TEST
{
class Program
{
struct A
{
public int X;//不能直接对其进行赋值
public int Y;
public static string str = null;//静态变量可以初始化
public A(int X, int Y)//带参数的构造函数
{
this.X = X;
this.Y = Y;
Console.WriteLine("X={0},Y={1},str={2}",X ,Y ,str );
}
}
static void Main(string[] args)
{
A a = new A(1, 2);
A a1 = a;
a.X = 10;
Console.WriteLine("a1.X={0}",a1 .X );
Console.Read();
}
}
}

C#中的结构,练习

标签:ar   sp   on   ad   as   line   new   br   c#   

原文地址:http://www.cnblogs.com/FLWL/p/4161959.html

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