代码拉取完成,页面将自动刷新
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)
{
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。