c#中“||”的用法?

这个符号是干什么用的?... 这个符号是干什么用的? 展开
 我来答
百度网友8371ee6
2010-07-23 · TA获得超过2818个赞
知道小有建树答主
回答量:692
采纳率:0%
帮助的人:682万
展开全部
条件“或”运算符 (||) 执行 bool 操作数的逻辑“或”运算,但仅在必要时才计算第二个操作数。
x || y
当x、y中的任意一个满足时返回true。如果x满足,则不执行y判断,直接返回true
比如:
MSDN例子:

class ConditionalOr
{
static bool Method1()
{
Console.WriteLine("Method1 called");
return true;
}

static bool Method2()
{
Console.WriteLine("Method2 called");
return false;
}

static void Main()
{
Console.WriteLine("regular OR:");
Console.WriteLine("result is {0}", Method1() | Method2());
Console.WriteLine("short-circuit OR:");
Console.WriteLine("result is {0}", Method1() || Method2());
}
}
/*
Output:
regular OR:
Method1 called
Method2 called
result is True
short-circuit OR:
Method1 called
result is True
*/
本回答被提问者和网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式