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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T22:23:54+00:00 2026-06-02T22:23:54+00:00

I need to store the type of an object in a class. This would

  • 0

I need to store the type of an object in a class.
This would look like:

template<class T>
class box
{
private:

    type_info type;
    T data;
}

The reason why I need to store the type information is complex to explain, anyway I would know if this is possibile in C++.
When i try to compile an instruction like:

type=typeid(data);

I get a syntax error:
No matching for initialization of ‘std::type_info’
So it seems like type_info hasn’t the constructor with no arguments.Is possibile then in some way, to memorize the type of an object into a data?

  • 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-02T22:23:56+00:00Added an answer on June 2, 2026 at 10:23 pm

    typeinfo is noncopyable – its constructors and assignment operator are private (in C++11 they are flagged deleted). you’re probably after something along these lines:

    template<class T>
    class box
    {
    public:
        box() : data(), type(typeid(data))
        {
        }
    private:
        T data;
        const type_info& type;
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to know your thoughts on whether this type of methodology could
I need to store a VARIANT of type bstr in a stl vector. I'm
I need to use a serializable type in hibernate (to store a Subject (security))
I need to determine file type (i.e., MimeType) of stored data in the SQL
I need to store a lot of data coming in from a server into
I need to store a char array inside a class and then return it.
This might look like a beaten question, but could not find an answer at
I want to make a Configuration Data Manager. This would allow multiple services to
There's an XML scheme which says something like this: <ExtraFields> <ExtraField Type=Int> <Key>Mileage</Key> <Value>500000
What i'm trying to do is create a template array class that will store

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.