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

The Archive Base Latest Questions

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

So I try: class data_ppp { public: template <class T> virtual boost::shared_ptr<T> getData() {

  • 0

So I try:

class data_ppp {
public:
    template <class T>
    virtual boost::shared_ptr<T> getData()
    {
        return boost::shared_ptr<T>(new T());
    }
};

class data_child : public data_ppp {
public:
    template<>
    getData<std::vector<int>>();
};

but cant get desired effect – I want to have in class data_child getData function that would only return boost::shared_ptr<std::vector<int>>. How to do such thing?

  • 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-17T18:29:46+00:00Added an answer on June 17, 2026 at 6:29 pm

    The only solution to your problem that I see now is:

    class data_ppp
    {
    public:
        template<class T>
        std::shared_ptr<T> getData()
        { return std::shared_ptr<T>(new T()); }
    };
    
    class data_child : public data_ppp
    {
    public:
        std::shared_ptr<int> getData() 
        { return data_ppp::getData<int>(); }
    };
    

    Usage:

    data_child dc;
    dc.getData();
    //dc.getData<float>(); // compilation error
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Consider the following minimal example. #include <vector> class Data { std::vector<int>& v; public: Data(std::vector<int>&
i try to work with spinner on dialog public class data extends Dialog {
Try this piece of code - public class WhitespaceTest { public static void main(String[]
This is my code: package test; import java.util.logging.Level; import java.util.logging.Logger; class Data{ int ar[]=new
Here is a part from my program: try { Class.forName(com.mysql.jdbc.Driver); InitializeData data = new
public class Time extends javax.swing.JFrame { /** Creates new form Time */ public Time()
When I try to serialize class with protected members, I get the following errors:
In the Demo WCF, I am having an error when try to creat class
I try to write DSL class Warcraft class << self def config unless @instance
I try to do static class, add to icollection but i got some issues

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.