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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T14:41:24+00:00 2026-05-21T14:41:24+00:00

Given: class Foo { public: void Method1(); } class Bar extends Foo { public:

  • 0

Given:

class Foo {
 public:
   void Method1();
}
class Bar extends Foo {
 public:
   Bar* Method2();
}
class Baz extends Bar {
 public:
   Baz* Method3();
}

So,

someObject *b = new Baz();
b->Method3()->Method2()->Method1();

This will work, as Baz() contains all methods including Method2(), Bar contains Method1();

But, due to return type this seems to be a bad idea – when accessing simpler Method1() at first inheritance level before calling more complex Method3(), and having to keep this calls in single line..

b->Method1()->Method2()->Method(3); // will not work?

Also, someone told me that putting try.. catch.. throw inside one of those Method's will occasionally exit the chain without calling next method at wrong value. Is this true?

So how to properly implement method chaining in C++?

  • 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-21T14:41:25+00:00Added an answer on May 21, 2026 at 2:41 pm

    That’s what virtual methods are for. From the syntax errors I gather that you are new to C++

    struct Base
    {
        virtual Base* One() { return this; };
        void TemplateMethod() { this->One(); }
    };
    
    struct Derived : public Base
    {
        virtual Base* One() { /* do something */ return Base::One(); }
    };
    

    When you call TemplateMethod:

    int main() 
    { 
    
          Base* d = new Derived();
          d->TemplateMethod(); // *will* call Derived::One() because it's virtual
    
          delete d;
    
          return 0;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Given a declaration like this: class A { public: void Foo() const; }; What
Given a class like this: class Foo { public: Foo(int); Foo(const Foo&); Foo& operator=(int);
Given the following class public class Foo { public int FooId { get; set;
Given this class class Foo { // Want to find _bar with reflection [SomeAttribute]
Given this class: public class OrderService { public OrderService(IOrderLogger log) { this.log = log;
Given a variable foo of type FooClass* and a member variable in that class
Suppose I write a library with the following: public class Bar { /* ...
Updated question given Andrew Hare's correct answer: Given the following C# classes: public class
Given the following code: using System.Collections.Generic; static class Program { static void Main() {
Following class structure is given: class Job { String description; Collection<JobHistory> history; } class

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.