标题:帮解释一下类和结构类型等。
只看楼主
yuxin1382
Rank: 1
等 级:新手上路
帖 子:172
专家分:0
注 册:2006-12-8
结帖率:50%
 问题点数:0 回复次数:0 
帮解释一下类和结构类型等。
帮给下列解除一下流程。
namespace ConsoleApplication2
{
    class Program
    {
        struct point

        {
            public int x, y;
            public point(int x, int y)

            {
                this.x = x;
                this.y = y;

            }
       }

        static void Main(string[] args)
        {
            point a = new point(10, 0);
            point b =a;
            a.x = 100;
            System.Console.WriteLine(b.x);
            System.Console.ReadKey();
        }
    }
}
搜索更多相关主题的帖子: point 结构 类型 public 流程 
2008-03-18 15:36



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-204024-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.442574 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved