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 7910411
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T12:51:45+00:00 2026-06-03T12:51:45+00:00

class CBase { public: void print() { cout<<In base print func\n; }; }; class

  • 0
class CBase {
public:
    void print()
    {
        cout<<"In base print func\n";
    };
};

class CDerived: public CBase {
public:
    void print()
    {
        cout<<"In derived print func\n";
    };
};

int main()
{
    CBase b;
    CBase* pb;
    CDerived d;
    CDerived* pd;
    pd->print();
    return 0;
}

The above code runs fine but when i make the print function in class CBase as virtual it results into segmentation fault.

I think there is some basic logic behind this of which I am not aware. Please give your comments why this is so?

  • 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-06-03T12:51:46+00:00Added an answer on June 3, 2026 at 12:51 pm
    CDerived* pd;
    pd->print();
    

    Pointer is not initialized -> undefined behavior.

    You need

    CDerived* pd = new CDerived;
    pd->print();
    

    Also, it doesn’t run fine. Or rather, you’re unlucky that it runs fine. Virtual dispatch requires a virtual table, and since the pointer is not initialized, the virtual table pointer doesn’t exist, that’s why it crashes when the functions is virtual.

    When it’s not virtual, it’s still undefined behavior, but it doesn’t crash because it doesn’t use any members.

    To prove this, try the following:

    class CBase {
    public:
        int y;
        void print()
        {
            cout<<"In base print func\n" << y;
        };
    };
    
    class CDerived: public CBase {
    public:
        int x;
        void print()
        {
            cout<<"In derived print func\n" << x;
        };
    };
    

    it will crash even if the functions is not virtual.

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

Sidebar

Related Questions

class base { public: void virtual func(){cout<<base;} void check() { func(); } }; class
Sample 1: class Animal { public static void saySomething() { System.out.print( Gurrr!); } }
Please consider the following simple use case: public class Foo { public virtual int
Use case: class A { static int s_common; public: static int getCommon () const
I have a class with the following code public cCase(string pCaseNo, string pMode) {
package com.idol; public class Auditorium { Auditorium(){ } public void turnOnLights() { System.out.println(Lights are
Main Class: public class Blackjack { static Deck D; static Hand P; public static
For example is it better to have: public class Case : EntityIdentifiable { public
Consider the following case: public class A { public A() { b = new
The use case is some what like this: public class SomeClass : ICloneable {

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.