Asp.net MVC中的"??"

最近在看Asp.net MVC时,遇到了这么一段代码

 

 

public AccountController(IFormsAuthentication formsAuth, IMembershipService service)
{
   
FormsAuth = formsAuth ?? new FormsAuthenticationService();
   
MembershipService = service ?? new AccountMembershipService();
}

FormsAuth = formsAuth ?? new FormsAuthenticationService();
该代码的语义是

If (formsAuth != null)
 
FormsAuth = formsAuth;
else
 
FormsAuth = FormsAuthenticationService();

对“??”MSDN上的解释是:

The ?? operator is called the null-coalescing operator and is used to define a default value for a nullable value types as well as reference types. It returns the left-hand operand if it is not null; otherwise it returns the right operand.

A nullable type can contain a value, or it can be undefined. The ?? operator defines the default value to be returned when a nullable type is assigned to a non-nullable type. If you try to assign a nullable value type to a non-nullable value type without using the ?? operator, you will generate a compile-time error. If you use a cast, and the nullable value type is currently undefined, an InvalidOperationException exception will be thrown.

For more information, see Nullable Types (C# Programming Guide).

The result of a ?? operator is not considered to be a constant even if both its arguments are constants.

 

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值