一根路过的废柴 2021-04-26 09:29 采纳率: 95.2%
浏览 27
已采纳

请问大佬这里的最后一行是什么意思啊,这既像自动属性的实现,又像是创建对象

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp1
{
    public class Position
    {
        public int X { get; set; }
        public int Y { get; set; }
    }
    public class Size
    {
        public int Width { get; set; }
        public int Height { get; set; }
    }
    public class Shape
    {
        public Position Positon { get; } = new Position();
    }
}
  • 写回答

2条回答 默认 最新

  • CrisYoung 2021-04-26 16:49
    关注
    public class Shape
        {
            public Position Position 
            {
                get
                {
                    return new Position();
                }
            }
        }

    这么写你就能理解了吧,public Position Polition,后面那个Polition是Shape类的一个属性,前面那个Position是类名。它这么写的意思就是通过get访问器获取Shape类的Position属性时返回Position类实例化的对象。关于C#属性的基础知识可以查看https://www.runoob.com/csharp/csharp-property.html

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥100 有偿求数字经济对经贸的影响机制的一个数学模型,弄不出来已经快要碎掉了
  • ¥15 这个公式写进SIMULINK中的function模块的代码中应该是什么样的
  • ¥15 javaweb登陆的网页为什么不能正确连接查询数据库
  • ¥15 数学建模数学建模需要
  • ¥15 已知许多点位,想通过高斯分布来随机选择固定数量的点位怎么改
  • ¥20 nao机器人语音识别问题
  • ¥15 怎么生成确定数目的泊松点过程
  • ¥15 layui数据表格多次重载的数据覆盖问题
  • ¥15 python点云生成mesh精度不够怎么办
  • ¥15 QT C++ 鼠标键盘通信