I have following code snippet:
class ABC{
public:
int a;
void print(){cout<<"hello"<<endl;}
};
int main(){
ABC *ptr = NULL:
ptr->print();
return 0;
}
It runs successfully. Can someone explain it?
|
I have following code snippet:
It runs successfully. Can someone explain it? |
|||||||
|
|
(I can't recall where I've got this knowledge, so I could be completely wrong) Under the hood most compilers will transform your class to somthing like this:
where _ABC_data is a C-style struct and your call
which is alright while execution since you do not use UPDATE: (Thanks to Windows programmer for right comment)
|
|||||
|
|
Calling member functions using a pointer that does not point to a valid object results in undefined behavior. Anything could happen. It could run; it could crash. In this case, it appears to work because the |
|||||
|
|
Most answers said that undefined behaviour can include "appearing" to work, and they are right. Alexander Malakhov's answer gave implementation details which are kind of common and explain why your situation appeared to work, but he made a slight misstatement. He wrote "which is alright while execution since you do not use this arg" but meant "which appeared to be alright while execution since you do not use this arg". But be warned, your code still is undefined behaviour. It printed what you wanted AND it transfered the balance of your bank account to mine. I thank you. (SO style says this should be a comment but it's too long. I made it CW though.) |
|||||||
|
|
It leads to undefined behavior. I put a bit of work into explaining why. :) But that's a more technical answer. Basically, undefined behavior means you are no longer guaranteed anything about the execution of the program; C++ simply has nothing to say. It could work exactly how you want, or it could crash miserably, or it could do both randomly. So appearing to work is a perfectly fine result of undefined behavior, which is what you're seeing. The practical reason why is, on your implementation (and in honestly, every implementation), the Remember, the above paragraph is something specific to your implementation and it's current behavior. It's just a guess and something you can't rely on. |
|||||
|
|
probably it runs because your class pointer is not using any member variable in print function...If in print function you try to access a it will not run... as uninitialized class pointer can't have initialized member variable... |
|||
|
|
|
Though I am not sure if this is the exact answer, this is my understanding. (Also, my terminology for CPP is bad - ignore that if possible) For C++, when any class is declared (i.e. no instant created yet), the functions are placed in the .text section of the binary being created. When an instant is created, Functions or Methods are not duplicated. That is, when the compiler is parsing the CPP file, it would replace the function calls for Thus, all the compiler would have done is replace appropriate address based on the type of I did the following for your code (named *EDIT: Adding some comments to ASM below ( I really am not good at ASM, I can barely read it - just enough to understand some basic stuff) - best would be to read this Wikibook link, which I too have done :D In case someone finds errors in the ASW, please do leave a comment - I would glad to fix them and learn more too.*
vWhere
Thus, even |
|||||
|
|
As others said, it is undefined behavior. Regarding the reason why it appears to work is that you are not trying to access the member variable |
|||
|
|
|
Expression
|
|||||
|
|
This works on every compiler I have ever tried it on (And I've tried it on many). Yes it is "undefined" but you are not dereferencing the pointer when you call a non-virtual member. You can even write code using this "feature" although purists will yell at you and call you nasty names and such. Edit: There seems to be some confusion here about calling member functions. You are NOT dereferencing the 'this' pointer when you call a non-virtual member. You are simply using fancy syntax to pass it in as a parameter. This is with all implementations I have seen, but it's not guaranteed. If it wasn't implemented this way, your code would run slower. A member function is simply a function with and extra semi-hidden parameter. That's it! end of story. That being said there may be some compiler written by Cletus' slack jaw software Co. that has a problem with this, but I haven't run into it yet. |
||||
|
|