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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T19:13:55+00:00 2026-05-29T19:13:55+00:00

Consider the following code: struct Foo { }; struct Bar { explicit Bar(const Foo&)

  • 0

Consider the following code:

struct Foo
{
};

struct Bar
{
  explicit Bar(const Foo&)
  {
  }
};

int main()
{
  Foo foo;

  Bar bar(foo); // Okay.
  Bar(foo);     // Will not compile.
  (Bar(foo));   // Okay. Unnamed temporary requires parenthesis.
}

Why are the parenthesis around the temporary version required? What ambiguity do they solve?

My hunch is: I think the compiler sees Bar(foo) as a declaration for a function, but I’m not sure why that would be the case since foo (the instance) is not a type. The parenthesis, therefore, force the above to be treated as an expression, not as a forward declaration.

  • 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-29T19:13:55+00:00Added an answer on May 29, 2026 at 7:13 pm

    Congratulations on discovering the most vexing parse.

    Scott Meyers describes it as follows:

    In general, the [C++] language (thanks, unfortunately, to its history) will try to interpret any declaration made like this as the declaration of a function.

    In your case, introducing parentheses disambiguates the parse, forcing it to become a local.

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

Sidebar

Related Questions

Consider the following code struct foo { const int txt_len; const int num_len; char
Consider the following code: #include <iostream> struct foo { // (a): void bar() {
Consider the following code: struct Calc { Calc(const Arg1 & arg1, const Arg2 &
Consider the following code: struct Foo { mutable int m; template<int Foo::* member> void
Given the following code: public struct Foo { public Foo(int bar, int baz) :
Consider the following code: #include <vector> struct A { explicit A(int i_) : i(i_)
Please consider the following code, struct foo { foo() { std::cout << Constructing! <<
Consider the following code: template <int dim> struct vec { vec normalize(); }; template
please consider the following code: template <typename T> struct foo { template <typename S>
Let's consider the following 3 code lines: struct stat buffer; status = lstat(file.c_str(), &buffer);

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.