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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T12:29:18+00:00 2026-06-17T12:29:18+00:00

if I declare: class Avoidance : public Schema<std_msgs::String,prog1::Command>{ and I try to void*(Schema<std_msgs::String,prog1::Command>::*pt)(); pt=&Avoidance::frontBusy;

  • 0

if I declare:

class Avoidance : public Schema<std_msgs::String,prog1::Command>{

and I try to

    void*(Schema<std_msgs::String,prog1::Command>::*pt)();
    pt=&Avoidance::frontBusy;

compiler report me

error: cannot convert ‘void* (Avoidance::*)()’ 
to 
‘void* (Schema<std_msgs::String_<std::allocator<void> >, prog1::Command_<std::allocator<void> > >::*)()’ in assignment

why? Avoidance inherits from

  Schema<std_msgs::String,prog1::Command>

then Avoidance IS Schema<…..>

  • 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-17T12:29:19+00:00Added an answer on June 17, 2026 at 12:29 pm

    Getting rid of templates to simplify, suppose you have

    class B {
    public:
        void f();
    };
    
    class D : public B {
    public:
        void g();
    };
    

    It might seem a little backwards at first, but you can cast void (B::*)() to void (D::*)(), but you cannot cast void (D::*)() to void (B::*)(). This makes sense when you think about how they would later be used.

    void test() {
        void (D::*p)() = &B::f; // OK!
        void (B::*q)() = &D::g; // ERROR!
    
        B b;
        D d;
    
        (d.*p)(); // Calls B::f on `d`.  Okay, `B::f` is an inherited member.
        (b.*q)(); // Calls D::g on `b`?? But that's not a member of `b` at all!
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class, and I declare it like this: public class WhereOrCondition<T> :
Possible Duplicate: PHP namespace with Dynamic class name How to declare class from string?
How do you declare a class property as an object? I tried: public $objectname
Assuming we declare a class DerivedEventArgs : public class DerivedEventArgs : EventArgs { ...
Explanation/preamble In Java, if you declare an abstract class with abstract methods, e.g. public
public static class ViewHolder { public int a,b; public void method(); } are the
Example: H class MyClass { int x,y,z; public: MyClass(int,int,int); void X(); void Y(); void
If I declare class as abstract with no abstract methods declared in it, will
I have two questions. I know it is possible to declare class objects in
How would I declare a class that has a method/message that takes a selector,

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.