Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
When does invoking a member function on a null instance result in undefined behavior?

I just read this question with an excellent answer: When does invoking a member function on a null instance result in undefined behavior?

Basically, is the following code undefined behaviour?

struct foo { static void bar() { } };
foo *p = nullptr;
p->bar();

According to the linked post, this can be interpreted in different ways one being UB and one being not.

In C++0x, as of n3126, the ambiguity remains

Does this still hold with final C++11?

share|improve this question
6  
Quoting the answer in the linked question: "It's always undefined behavior to call a member function through a null pointer". – mfontanini Jan 23 at 21:44
Just because it may be allowed doesn't mean you should do it. – Pubby Jan 23 at 21:46
3  
@helami you misread the post you linked. – Yakk Jan 23 at 21:49
1  
@Yakk: How so? He wants to know whether those answers are still true in C++11. – Lightness Races in Orbit Jan 23 at 21:51
1  
@Non-StopTimeTravel: That is already answered in Jame's McNellis comment. – Jesse Good Jan 23 at 21:59
show 7 more comments

marked as duplicate by Yakk, bames53, Jesse Good, GManNickG, Mooing Duck Jan 23 at 21:58

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

The question you linked clearly shows that in either the strict or weak interpretation of the standard, the code you show is undefined behavior. The ambiguity (may) only exist for static functions (and your question refers specifically to non-static functions).

EDIT: The ambiguity yet remains in N3337 dated 2012-01-16 but I don't have a copy of the final standard. Based on the comments in the issue, it looks like the resolution to issue 232 never made it into the standard, apparently because the wording was too strong regarding making it a compile-time concept rather than undefined behavior as intended.

share|improve this answer
Question has been changed, it now refers to static functions. – Yakk Jan 23 at 22:02

Not the answer you're looking for? Browse other questions tagged or ask your own question.