In VB.Net, what is the difference between And and AndAlso? Which should I use?
|
|
|
The 'And' operator evaluates both sides, where 'AndAlso' only evaluates the right side if the left side is true. An example:
The above throws an exception if
This one does not throw an exception. So if you come from the C# world, you should use More info here: http://www.panopticoncentral.net/2003/08/18/the-ballad-of-andalso-and-orelse/ |
|||||||||
|
|
the
Checks if x is equal to 5, and if y is equal to 7, then continues if both are true.
Checks if x is equal to 5. If it's not, it doesn't check if y is 7, because it knows that the condition is false already. (This is called short-circuiting) Generally people use the short-circuiting method, because it saves on runtime. However, if the second action (in this case y = 7) has a side effect that you want to run whether the first is true or not, i.e.:
Then you might want to use And. The reason you might want to use Andalso would be in the case where you want to make sure an object exists before performing an action on it:
If that used And instead of Andalso, it would still try to Object.Load() even if it were nothing, which would throw an exception. |
|||||||||||||
|
|
Andalso is much like And, except it works like && in C#, C++ etc. The difference is that if the first clause (the one before Andalso) is true, the second clause is never evaluated - the compound locical expression is "short circuited". This is sometimes very useful, eg. in an expression such as
Using the old And in the above expression would throw a NullReferenceException if myObj were null. |
|||
|
|
|
Just for all those people who say side effects are evil: a place where having two side effects in one condition is good would be reading two file objects in tandem.
Using the Of course the code above wouldn't work, but I use side effects like this all the time and wouldn't consider it "bad" or "evil" code as some would lead you to believe. It's easy to read and efficient. |
||||
|
|
Evaluates both Bool1 and Bool2
Evaluates Bool2 if and only if Bool1 is true. |
|||
|
|
|
A simple way to think about it is using even plainer English
|
|||
|
|
|
Also see this question: Also: a comment for those who mentioned using If the right side has a side effect you need, just move it to the left side rather than using "And". You only really need "And" if both sides have side effects. And if you have that many side effects going on you're probably doing something else wrong. In general, you really should prefer AndAlso. |
|||
|
|
