I was wondering whether the access to x in the last if below here is undefined behaviour or not:
int f(int *x)
{
*x = 1;
return 1;
}
int x = 0;
if (f(&x) && x == 1) {
// something
}
|
I was wondering whether the access to x in the last if below here is undefined behaviour or not:
|
||||
| show 3 more comments |
|
It's not undefined behavior as operator |
|||||||
|
|
It is well defined. Reference - C++03 Standard: Section 5: Expressions, Para 4:
While in,
|
|||||||||||||
|
|
It is defined. C/C++ do lazy evaluation and it is defined that first the left expression will be calculated and checked. If it is true then the right one will be. |
|||
|
|
|
No, because There is a defined order also on In the comparable:
Then it's undefined. Here both the lhs and rhs will be computed and in either order. This non-shortcutting form of logical and is less common because the short-cutting is normally seen as at least beneficial to performance and often vital to correctness. |
|||
|
|
|
It is not undefined behavior. The reason depends on two facts, both are sufficient for giving defined behavior
The following is defined behavior too
However, you don't know whether |
|||
|
|
|
It's not undefined, but it shouldn't compile either, as you're trying to assign a pointer to x (
Edit: With the change it should compile, but will still be defined (as it doesn't really matter if you use a pointer or reference). |
|||
|
|
|
It will pass the address of the local variable x in the caller block as a parameter to f (pointer to int). f will then set the parameter (which is a temporary variable on the stack) to address 1 (this causes no problem) and return 1. Since 1 is true, the if () will move on to evaluate x == 1 which is false, because x in the main block is still 0. The body of the if block will not be executed. EDIT With your new version of the question, the body will be executed, because after f() has returned, x in the calling block is 1. |
|||
|
|
ftakes an int reference, and you are passing an address. – crashmstr Jan 13 '12 at 14:50*x = 1;though. – Mark B Jan 13 '12 at 14:53&&operator evaluates the expression on the left hand side first, and if true (i.e.true, nonNULLand nodnullptr, or any non-zero value) then it evaluates the expression on the right hand side. – Joachim Pileborg Jan 13 '12 at 14:56