Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 671595
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T00:23:29+00:00 2026-05-14T00:23:29+00:00

Consider the following code: #include <iostream> struct foo { // (a): void bar() {

  • 0

Consider the following code:

#include <iostream>

struct foo
{
    // (a):
    void bar() { std::cout << "gman was here" << std::endl; }

    // (b):
    void baz() { x = 5; }

    int x;
};

int main()
{
    foo* f = 0;

    f->bar(); // (a)
    f->baz(); // (b)
}

We expect (b) to crash, because there is no corresponding member x for the null pointer. In practice, (a) doesn’t crash because the this pointer is never used.

Because (b) dereferences the this pointer ((*this).x = 5;), and this is null, the program enters undefined behavior, as dereferencing null is always said to be undefined behavior.

Does (a) result in undefined behavior? What about if both functions (and x) are static?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T00:23:29+00:00Added an answer on May 14, 2026 at 12:23 am

    Both (a) and (b) result in undefined behavior. It’s always undefined behavior to call a member function through a null pointer. If the function is static, it’s technically undefined as well, but there’s some dispute.


    The first thing to understand is why it’s undefined behavior to dereference a null pointer. In C++03, there’s actually a bit of ambiguity here.

    Although “dereferencing a null pointer results in undefined behavior” is mentioned in notes in both §1.9/4 and §8.3.2/4, it’s never explicitly stated. (Notes are non-normative.)

    However, one can try to deduced it from §3.10/2:

    An lvalue refers to an object or function.

    When dereferencing, the result is an lvalue. A null pointer does not refer to an object, therefore when we use the lvalue we have undefined behavior. The problem is that the previous sentence is never stated, so what does it mean to “use” the lvalue? Just even generate it at all, or to use it in the more formal sense of perform lvalue-to-rvalue conversion?

    Regardless, it definitely cannot be converted to an rvalue (§4.1/1):

    If the object to which the lvalue refers is not an object of type T and is not an object of a type derived from T, or if the object is uninitialized, a program that necessitates this conversion has undefined behavior.

    Here it’s definitely undefined behavior.

    The ambiguity comes from whether or not it’s undefined behavior to deference but not use the value from an invalid pointer (that is, get an lvalue but not convert it to an rvalue). If not, then int *i = 0; *i; &(*i); is well-defined. This is an active issue.

    So we have a strict “dereference a null pointer, get undefined behavior” view and a weak “use a dereferenced null pointer, get undefined behavior” view.

    Now we consider the question.


    Yes, (a) results in undefined behavior. In fact, if this is null then regardless of the contents of the function the result is undefined.

    This follows from §5.2.5/3:

    If E1 has the type “pointer to class X,” then the expression E1->E2 is converted to the equivalent form (*(E1)).E2;

    *(E1) will result in undefined behavior with a strict interpretation, and .E2 converts it to an rvalue, making it undefined behavior for the weak interpretation.

    It also follows that it’s undefined behavior directly from (§9.3.1/1):

    If a nonstatic member function of a class X is called for an object that is not of type X, or of a type derived from X, the behavior is undefined.


    With static functions, the strict versus weak interpretation makes the difference. Strictly speaking, it is undefined:

    A static member may be referred to using the class member access syntax, in which case the object-expression is evaluated.

    That is, it’s evaluated just as if it were non-static and we once again dereference a null pointer with (*(E1)).E2.

    However, because E1 is not used in a static member-function call, if we use the weak interpretation the call is well-defined. *(E1) results in an lvalue, the static function is resolved, *(E1) is discarded, and the function is called. There is no lvalue-to-rvalue conversion, so there’s no undefined behavior.

    In C++0x, as of n3126, the ambiguity remains. For now, be safe: use the strict interpretation.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Consider the following code: #include <vector> using namespace std; struct foo { void bar()
Consider the following code: #include <iostream> class Bar { public: void foo(bool b =
Consider the following code snippet: #include <iostream> using namespace std; struct Element { void
Consider the following code: #include <iostream> #include <memory> #include <vector> using namespace std; struct
Consider the following code: #include <iostream> struct X{ X(){ throw 0; } }; void
Consider the following code. #include <iostream> #include <string> struct SimpleStruct { operator std::string ()
Consider the following code: #include <iostream> using namespace std; int main() { int x,
Consider the following code. #include <stdio.h> #include <vector> #include <iostream> struct XYZ { int
Consider the following code: #include <iostream> using namespace std; class Test { static int
Please consider the following code: #include <iostream> #include <typeinfo> template< typename Type > void

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.