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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T03:58:19+00:00 2026-05-27T03:58:19+00:00

Why do I receive the error below? (Why is the compiler trying to call

  • 0

Why do I receive the error below? (Why is the compiler trying to call the default constructor?)

#include <cmath>

template<typename F> struct Foo { Foo(F) { } };

int main()
{
    Foo<double(double)>(sin);   // no appropriate default constructor available
}
  • 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-27T03:58:20+00:00Added an answer on May 27, 2026 at 3:58 am

    It is because there is no difference between

     Foo<double(double)>(sin);   
    

    and

     Foo<double(double)> sin;   
    

    Both declare a variable of name sin.

    The parens are superfluous. You can put as many parens as you want.

    int x;             //declares a variable of name x
    int (x);           //declares a variable of name x
    int ((x));         //declares a variable of name x
    int (((x)));       //declares a variable of name x
    int (((((x)))));   //declares a variable of name x
    

    All are same!

    If you want to create temporary instance of the class, passing sin as argument to the constructor, then do this:

    #include<iostream>
    #include <cmath>
    
    template<typename F> 
    struct Foo { Foo(F) { std::cout << "called" << std::endl; } };
    
    int main()
    {
        (void)Foo<double(double)>(sin); //expression, not declaration
        (Foo<double(double)>(sin));     //expression, not declaration
        (Foo<double(double)>)(sin);     //expression, not declaration
    }
    

    Output:

    called
    called
    called
    

    Demo : http://ideone.com/IjFUe

    They work, because all three syntaxes force them to be expressions, rather than variable declarations.

    However, if you try this (as @fefe sugguested in the comment):

     Foo<double(double)>(&sin);  //declaration, expression
    

    It is not going to work, for it declares a reference variable, and since it is not initialized, you will get compilation error. See : http://ideone.com/HNt2Z

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

Sidebar

Related Questions

When running the follow query i receive the error below, Im just trying to
I receive the following error when trying to run my ASP.NET MVC application: The
When I try to change my stored procedure (below) and I receive this error
When I execute the code below I receive the error message: LINQ to Entities
In SugarCRM 6.2.x I receive the below error, I reinstalled but the same thing.
My code is like below, when I compile it , I receive this error
When i run the Powershell script below i receive the error below. How do
I'd like to receive error logs via email. For example, if a Warning-level error
I am having trouble accessing the data field. I receive the error: Databinding methods
Why do I receive a syntax error when printing a string in Python 3?

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.