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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T10:08:03+00:00 2026-05-16T10:08:03+00:00

Why doesn’t this code compile? template <class T> class A { public: A(T t)

  • 0

Why doesn’t this code compile?

template <class T>
class A
{
    public:
            A(T t) : t_(t) {}

    private:
            T t_;
};


int main()
{
    A a(5.5);
    // A<double> a(5.5); // that's what i don't want to do
}

I want template arguments to be implicit.

Like in this example:

template<class T>
T Foo(T t) { return t; }

// usage:
Foo(5.5);

UPDATE: named-constructor idiom isn’t acceptable for me. I want to use this class for RAII.
The only way to do so is const A& a = A::MakeA(t), but it’s ugly!

  • 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-16T10:08:04+00:00Added an answer on May 16, 2026 at 10:08 am

    Since you have to name the type of a variable (C++03 can’t infer the type of a variable), you can only do:

    A<double> a(5.5); // that's what i don't want to do
    

    The situation is a little easier when you needn’t make a variable of the type, but want to pass it to some other function. In this case, you define an auxiliary “constructor function” (see std::make_pair):

    template <class T>
    A<T> make_a(T t) { return A<T>(t); }
    

    and then use it like this:

    another_function(make_a(1.1));
    

    In C++0x, you will be able to do even

    auto a(make_a(5.5));
    

    to define your variable a.

    However, inferring A‘s argument from its constructor is generally impossible, because you can’t tell which specializations have the conversion constructor from a given type. Imagine there’s a specialization

    template <>
    struct A<void>
    {
      A(double);
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Why doesn't this work? The label is inside the .item parent. I don't want
This doesn't work: int number = 1; String numberstring = IntToString(number); I get The
Why doesn't this code work? b if b = true Error: undefined local variable
Why doesn't this work: <Style TargetType=s:Substance> <Setter Property=Template> <Setter.Value> <DataTemplate> <StackPanel> <TextBlock Text={TemplateBinding Name}/>
Why doesn't this code work? I'am using FF. <head> <script type=text/javascript> document.getElementById(someID).onclick = function(){
There doesn't seem to be a question for this, and it seems strange that
Why doesn't this work? HTML <div class=gallery> <div class=viewport> <div class=wrapper> <img src=img/boat1.png />
Why doesn't Html.ActionLink work in the below code? This is a page in the
Why doesn't this jQuery code work? $(document).ready(function () { $('currentPage').click(function() { $('myaccount').slideDown('slow', function() {
This doesn't seem to work (=null): @Resource(name = java:app/AppName) private String appName; But a

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.