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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T02:20:21+00:00 2026-05-19T02:20:21+00:00

I’d like to specialize following template: template <typename T, int P> T item(size_t s);

  • 0

I’d like to specialize following template:

template <typename T, int P>
T item(size_t s);

into something like that:

template<int P>
T item<typename T>(size_t s)
{
//for all numeric types
    return static_cast<T>(rand());
}

template <int P>
string item<string>(size_t s)
{
    return "asdf";
}
  • 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-19T02:20:22+00:00Added an answer on May 19, 2026 at 2:20 am

    Both are going to require partial specialization. The first is going to require SFINAE. Since function templates can only be fully specialized you’ll have to use a helper object of some sort.

    template <typename T, int P>
    T item(size_t s);
    
    template < typename T, typename Enable = void >
    struct item_
    {
      template < int P >
      T apply(size_t s);
    };
    
    template < typename T >
    struct item_<T, typename enable_if< is_numeric<T> >::type >
    {
      template < int P >
      static T apply(size_t s) { return static_cast<T>(rand()); }
    };
    
    template < >
    struct item_<std::string, void>
    {
      template < int P >
      static std::string apply(size_t s) { return "NSTHEOSUNTH"; }
    };
    
    template < typename T, int P >
    T item(size_t s) { return item_<T>::template apply<P>(s); }
    

    Alternatively you might consider tag dispatching:

    struct numeric_tag {};
    struct string_tag {};
    struct wtf_tag {};
    
    template < typename T, int P >
    T item(size_t s, numeric_tag) { return static_cast<T>(rand()); }
    template < typename T, int P >
    T item(size_t s, string_tag) { return "SNTHEO"; }
    template < typename T, int P >
    T item(size_t s)
    {
      item(s, if_
              < 
                is_numeric<T>
              , numeric_tag
              , typename if_
                <
                  is_same< std::string, T >
                , string_tag
                , wtf_tag
                >::type
              >::type());
    }
    

    Or you could mix some metafunction classes up to match with tags and use a vector of pairs…iterate through them testing each first (the metafunction class) and returning the second (the tag) to pick an implementation.

    There’s lots and lots and lots of ways to go about it.

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

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I've got a string that has curly quotes in it. I'd like to replace
I have a French site that I want to parse, but am running into
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
For some reason, after submitting a string like this Jack’s Spindle from a text
That's pretty much it. I'm using Nokogiri to scrape a web page what has
this is what i have right now Drawing an RSS feed into the php,
I would like to run a str_replace or preg_replace which looks for certain words

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.