C# 6.0 (C# vNext) 新功能之:Expression Bodied Functions and Properties

Expression Bodied Function 可以用在:
  • methods
  • user-defined operators
  • type conversions
  • read-only properties 
  • indexers
看以下的例子:
public class RgbColor(int r, int g, int b)
{
  public int Red { get; } = r;
  public int Green { get; } = g;
  public int Blue { get; } = b;
 
  public string ToHex() =>
    string.Format("#{0:X2}{1:X2}{2:X2}", Red, Green, Blue);
 
  public static RgbColor operator - (RgbColor color) =>
    new RgbColor(
      color.Red ^ 0xFF,
      color.Green ^ 0xFF,
      color.Blue ^ 0xFF
    );
}

用於「方法」的例子:
public string ToHex() => string.Format("#{0:X2}{1:X2}{2:X2}", Red, Green, Blue);
public override string ToString() => this.Name;

用於「user-defined operators」的例子:
  public static RgbColor operator - (RgbColor color) =>
    new RgbColor(
      color.Red ^ 0xFF,
      color.Green ^ 0xFF,
      color.Blue ^ 0xFF
    );

public static Complex operator +(Complex a, Complex b) => a.Add(b);

用於「read-only property」的例子:
特别注意,这是 Read Only Property 而不是 Field 
public string ID => Guid.NewGuid().ToString();
又一个例子:
public class Point(int x, int y) {
    public int X => x;
    public int Y => y;
    public double Dist => Math.Sqrt(x * x + y * y);
    public Point Move(int dx, int dy) => new Point(x + dx, y + dy);
}

用於「type conversions」的例子:实现 string 和 Name 之间的隐性转换
public static implicit operator string(Name n) => n.First + " " + n.Last;


用於「indexers」的例子:

public Customer this[Id id] => store.LookupCustomer(id);







  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值