加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
014-条件运算符.cs 584 Bytes
一键复制 编辑 原始数据 按行查看 历史
using System;
using System.Text;
namespace _014_条件运算符
{
class Program
{
static int Max(int a, int b)
{
return (a > b) ? a : b; // 三元运算符
}
static void Main(string[] args)
{
// 短路计算在允许某些表达式时时必要的,像下面的表达式不会抛出NullReferenceException异常:
StringBuilder sb = new StringBuilder("This is Test StringBuilder");
if (sb != null && sb.Length > 0)
{
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化