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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T21:29:28+00:00 2026-05-22T21:29:28+00:00

In this piece I’m trying to declare in Class B a list that can

  • 0

In this piece I’m trying to declare in Class B a list that can hold objects of Class A of any type, such as A<int>, A<double>, A<float>. I intend to add A objects to the list during runtime:

#include <list>

template <class T> class A {};

class B {
    template<class T> std::list<A<T>*> objects;
};

It seems like making a list like this should work but compiling it gives an error:

Line 6: error: data member ‘objects’ cannot be a member template

compilation terminated due to -Wfatal-errors.

Can somebody explain why this doesn’t work and how I can fix it?

  • 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-22T21:29:28+00:00Added an answer on May 22, 2026 at 9:29 pm

    That’s just not how C++ works. If you want to group different objects together, they need to have at least some relation. Being instantiations of the same class template doesn’t imply that they are related, they’re completely distinct types. If you want a list of A<T>*s, better make a list of base-class pointers and forward operations through virtual functions:

    class A_base{
    public:
      virtual void foo() = 0;
      virtual ~A_base() { }
    };
    
    template<class T>
    class A : public A_base{
    public:
      void foo(){
        // ...
      }
    };
    
    class B{
      std::list<A_base*> objects;
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This piece of code is supposed to go through a list and preform some
This piece of codes segment fault on me, any idea why? allButtons is a
Given this piece of code: (void)someFunction(void) { int array[] = {1,2,3,4,5,6,7,8,9,10}; } Where are
This piece of code is working fine with normal php: <?php function barber($type) {
Consider this piece of code: public abstract class Validator { protected Validator() { }
Does this piece of code lead to dangling pointer. My guess is no. class
Given this piece of XAML <DockPanel> <DockPanel.Resources> <Style TargetType={x:Type GroupBox}> <Setter Property=Template> <Setter.Value> <ControlTemplate
I have this piece of Jquery code that grabs a heading in a table
Why this piece of code compiles? #include <iostream> int foo(int x) { if(x ==
In this piece of code taken from http://drdobbs.com/cpp/184403774 : template <class L, class R>

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.