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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T22:01:05+00:00 2026-06-11T22:01:05+00:00

I want to use one pointer ( _ref ) to point to different class

  • 0

I want to use one pointer ( _ref ) to point to different class types. In order to use it, I must cast it to the type that is addressed. I cannot do that because of the incomplete type that is at line 5. If i move the definition of B to line 5, it requires class A to be defined.

#include <iostream>
#include <vector>
#include <string>

class B;

class A{
    void *_ref;
    std::string _reft;
public:
    void setref(A &a){
        _ref=&a;
        _reft=typeid(a).name();
    }
    void setref(B &b){
        _ref=&b;
        _reft=typeid(b).name();
    }
    void test(){
        if(_ref && _reft==std::string(typeid(B).name())){
            std::cout<<"Ref to B: ";
            static_cast<B*>(_ref)->test(); //error here
        }
    }
};

class B{
    std::vector<A> a;
public:
    A A(int i){
        return a[i];
    }
    void test(){
        std::cout<<"IT WORKS!";
    }
};

int main(){
    A a;
    B b;
    a.setref(b);
    a.test();
    return 0;
}
  • 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-11T22:01:06+00:00Added an answer on June 11, 2026 at 10:01 pm

    Move the implementation of the function that requires B to be complete out of the class; put it either in a source file, or inline after the definition of B:

    class A{
        // ...
        void test();
    };
    
    class B{
        // ...
    };
    
    inline void A::test(){
        // ...
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We are two students who want to use one-class svm for dectection of summary
I have a few pages and want that they use one style. See in
I want to use the values of JTextFields from one class in another class
As one of the class template parameters I need to use a pointer to
I have defined globally a list in one class as a pointer: class1.cpp type
I want to use one program as a shared library for an other program.
I have two User Controls already created now I want to use one as
string one = find; combobox1.text = one; I want to use one i.e string
I want to use NSString from one UIView in another UIView . There are
I want to use many bars like this one in my app (i don't

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.