码迷,mamicode.com
首页 > 其他好文 > 详细

? ?? 类?

时间:2018-01-12 13:33:44      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:post   ring   style   ora   max   body   text   color   under   

            int a = 1, b = 10;
            int max = a > b ? a : b;//a>b吗?如果是,返回a;不是,返回b。

            string aa = null;
            string bb = "我是bb";
            string cc= aa ?? bb;//如果aa不为null,返回aa;如果aa为null,返回bb。

            int? ee = null;//ee可以为null

完!!

? ?? 类?

标签:post   ring   style   ora   max   body   text   color   under   

原文地址:https://www.cnblogs.com/wwz-wwz/p/8275061.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!