I was given the following as an interview question:
class A
{
public:
void fun()
{
std::cout << "fun" << std::endl;
}
};
A* a = NULL;
a->fun();
What will happen when this code is executed, and why?
|
I was given the following as an interview question:
What will happen when this code is executed, and why? See also: |
||||
| show 6 more comments |
|
It's undefined behavior, so anything might happen. A possible result would be that it just prints |
|||||||||||||||
|
|
By the standard, this is undefined behavior and therefore a very bad thing. In reality of most programming platforms (across both X86 and several other architectures) this will run fine. Why? Consider how class functions are implemented in C++. This isn't a virtual function, therefor this can be a static call to a known address. In assembly, we can see this as mov A, 0 mov ecx, A call a__fun since a__fun requires no instance data, even though it receives a null this pointer, nothing will happen. Still shitty code and any compiler will scream, but it can run. |
|||
|
|
|
It won't compile.
If you solve those two minor problems, the most likely behavior, on most modern computers is that it will run, and print "fun", because:
|
||||
|
We can't know what will. Everything can happen, because the program exposes undefined behavior. See Does invoking a member function on a null instance cause undefined behavior?. |
|||
|
|
|
I have tried multiple times,all the time output is coming "fun" this is because function |
||||
|
|
Was this a question about your knowledge of C++ or a question about code reading skills and/or debugging skills? Other than the fact that a C++ class is being used, this kind of problem is language-agnostic. |
|||||||||
|
Class(capital C) isn't a C++ keyword. – Ken Mar 28 '10 at 15:49