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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T21:53:32+00:00 2026-06-12T21:53:32+00:00

I have a reference-counted base class which will be the parent of most of

  • 0

I have a reference-counted base class which will be the parent of most of my objects. It has its own little reference counted methods. The trouble is, these might be subclassed. In a fashion, I’m trying to implement NSObject, but in C++.

This therefore means there’s an ‘init’ method.

Therefore, the init method should always return the child’s class type. Imagine this:

class BaseClass{
public:
virtual childclass* init();
}

I know in Objective-C this would be quite easy as it returns ‘id’ and no casting is required. However in C++ there’s no such thing as ‘id’ and therefore I’m hoping there’s a macro or something that automatically expands childclass* into the actual child’s class. I’m quite new to C++ so I’m not sure how to implement this.

  • 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-12T21:53:34+00:00Added an answer on June 12, 2026 at 9:53 pm

    This can be done via the Curiously Recurring Template Pattern.

    template <class childclass> class BaseClass
    {
      public:
        virtual childclass* init();
    };
    
    class ChildClass : BaseClass<ChildClass>
    {
      public:
        virtual ChildClass* init();
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In a C++ program, I have two reference counted objects: King and Heir .
I have a library which creates objects (instances of class A) and pass them
The code I'm working with has its own smart pointer implementation which does simple
I have a simple reference counted class that holds a memory buffer. It looks
I have a class which contains a BYTE* , a reference counter and a
So I have a reference table which stores the primary key, description and update
I want to have a reference data member in a class, but I do
If I have a reference to an object: var test = {}; that will
Currently ive got some reference counted classes using the following: class RefCounted { public:
I have an object system which I wrote in C which contains reference counting

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.