支持布尔运算符? [英] The boolean operator are supported?

查看:82
本文介绍了支持布尔运算符?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

支持布尔运算符?

我需要评估以下表达式:

A> B和B> C



谢谢

Tomaso

The Boolean operators are supported?
I need evaluate the following expression:
A>B and B>C

Thanks
Tomaso

推荐答案

支持运营商:



The operators are supported:

If A > B And B > C Then
    ' Both parts of the condition evaluated - probably not what you want.
End If


If A > B AndAlso B > c Then
    ' B > C only evaluated if A > B, short circuit - probably what you want.
End If





AndAlso 相当于&&& / code>在c#,相当于& ,如果这样可以使评论更清晰。



The AndAlso is equivalent to && in c#, And is equivalent to & if that makes the comments clearer.


是的,它们是:

http://msdn.microsoft.com/en-us/library/a1w3te48%28v=vs.80%29.aspx [ ^ ]



按照该文档中的链接应该回答您的问题。并且始终记得阅读文档; - )
Yes they are:
http://msdn.microsoft.com/en-us/library/a1w3te48%28v=vs.80%29.aspx[^]

Following the links in that document should answer your question. And always remember to read the documentation ;-)


这篇关于支持布尔运算符?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆