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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T21:42:40+00:00 2026-06-01T21:42:40+00:00

(*i have to use my array struct, and it has to be dynamical) I

  • 0

(*i have to use my array struct, and it has to be dynamical)

I want the Array struct to be filled with Expe class objects. I`m using Templates but somehow my struct header doesn’t recognize the template I have created.

Struct header:

template <class T>;
struct Arr{
    int days;
    T * M;
};
typedef Arr* Array;

Struct cpp:

void constr(Array &o){
    //Construct of 31*1 Matrix
    o=new Arr;
    o->days = 31;
    o->M = new T[o->days];

It should be fine I think, but I get error:

..\ListStruc.cpp:26:13: error: expected type-specifier before 'T'
  • 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-01T21:42:41+00:00Added an answer on June 1, 2026 at 9:42 pm

    You have a semicolon between template<class T> and struct Arr, which doesn’t belong there. So change it to

    template <class T> struct Arr{ int days; T * M; };
    

    Furthermore Arr is a template and therefore you can’t typedef Arr* to Array, only Arr<someConcreteType>*.

    Last template functions must be implemented in the header and, as mentioned you typedef doesn’t work so put constr in a header and change it to:

    template<class T> void constr(Arr<T>*& o){
      o=new Arr<T>;
      o->days = 31;
      o->M = new T[o->days];
    

    There might be other problems, but that is what I can see from the question.

    Of course there are problems with your code apart from the compilation (violation of the rule of three and lack of exception safety).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

ı have a query_string and ı want to use it in array. ı have
I have an array of different type objects and I use a BinaryWriter to
I have an array of strings that I want to use for button titles
I have a array of names and I want to use these names for
I have an array of DateTime objects and need to use them as strings
I have an array of objects, and i use following code to get in
I have a numpy 2D array self.sub and i want to use it in
I want to use Haskell in production. It has a lot of libraties but
I have a string which has been sent using udp. Now I want to
I have an array of search values that I would like to use in

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.