加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
029-属性.cs 1.20 KB
一键复制 编辑 原始数据 按行查看 历史
using System;
namespace _029_属性
{
public class Stock
{
decimal currentPrice; // “背后”的私有字段
// 属性和字段的声明很类似,但属性比字段多了一个get/set块。
public decimal CurrentPrice // 公有属性
{
get { return currentPrice; }
set { currentPrice = value; }
}
}
class Program
{
// 只读和计算属性
Decimal currentPrice, shareOwned;
public decimal Worth
{
get { return currentPrice * shareOwned; }
}
// 自动属性
public class Stock
{
public decimal CurrentPrice { get; set; }
}
// get和set访问器可以有不同的访问级别。
// 典型的用法是,将一个public的属性中的set访问器设置成internal或private的:
public class Foo
{
private decimal x;
public decimal X
{
get { return x; }
private set { x = Math.Round(value, 2); }
}
}
static void Main(string[] args)
{
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化