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

  • Home
  • SEARCH
  • 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 201371
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T17:11:36+00:00 2026-05-11T17:11:36+00:00

I have trouble when designing classes like this class C1 { public: void foo();

  • 0

I have trouble when designing classes like this

class C1 {
public:
  void foo();
}

class C2 {
public:
  void foo();
}

C1 and C2 has the same method foo(),

class Derived1 : public Base {
public:
  void Update() {
    member.foo();
  }
private:    
  C1 member;
}

class Derived2 : public Base {
public:
  void Update() {
    member.foo(); 
  }
private:    
  C2 member;
}

Update() of both Derived class are exactly the same, but the type of member is different.
So i have to copy the Update implement for every new derived class.

Is that a way to reduce this code duplication? I only come out with a solution with macro.
I think there is a more elegant way to solve this with template but I can not figure it out..

EDIT:
thanks a lot guys but i think i missed something..

1.I’m using c++

2.In reality each Derived class has about 5 members, they all afford the foo() method and are derived from the same base class. My situation is that i have already written a (very long) Update() method and it can work for every derived class without any modification. So i just copy and paste this Update() to every new class’s Update() and this lead to terrible code duplication. I wonder if there is a way in which i need not to rewrite the Update() too much and can reduce the duplication.

thx again

  • 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-11T17:11:36+00:00Added an answer on May 11, 2026 at 5:11 pm

    This is exactly the sort of application that class templates are designed for. They allow functions within a class to operate on different data types, without the need to copy algorithms and logic.

    This Wikipedia page will give you a good overview of templates in programming.

    Here’s the basic idea to get you started:

    template  <class T>
    class CTemplateBase
    {
    public:
        void Update()
        {
            member.foo();
        }
    private:
        T member; // Generic type
    }
    
    class CDerived1 : public CTemplateBase<C1>
    {
        // No common algorithms required here
    }
    
    class CDerived2 : public CTemplateBase<C2>
    {
        // No common algorithms required here
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 134k
  • Answers 134k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Thanks guys but I found the solution at http://pietschsoft.com/post/2008/08/15/How-To-Use-ASPNET-MVC-in-Website-rather-than-Web-Application-Project.aspx May 12, 2026 at 6:43 am
  • Editorial Team
    Editorial Team added an answer maybe you would want to respond to this problem dynamically.… May 12, 2026 at 6:43 am
  • Editorial Team
    Editorial Team added an answer It might be easier to do this with an HTML… May 12, 2026 at 6:43 am

Related Questions

I have been programming in C# and Java for a little over a year
In .net, I have an inherited control: public CustomComboBox : ComboBox I simply want
I'm designing an application that supports plugin development. Its more of a learning exercise.
There's a lot of advice out there that you shouldn't expose your fields publically,

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.