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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T07:13:51+00:00 2026-05-27T07:13:51+00:00

This is a simple C++ constructor concept I’m having trouble with. Given this code

  • 0

This is a simple C++ constructor concept I’m having trouble with.

Given this code snippet:

#include <iostream>
using namespace std;

class Foo 
{
public:
    Foo ()      {       cout << "Foo()"  << endl;     }
    ~Foo ()     {       cout << "~Foo()" << endl;     }
};

int main()
{
    Foo f1;
    Foo f2();
}

The output was:

Foo()
~Foo()

It seems like Foo f2(); doesn’t do anything. What is Foo f2(); And why doesn’t it do anything?

  • 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-27T07:13:52+00:00Added an answer on May 27, 2026 at 7:13 am

    Foo f2(); declares a function named f2 which takes no argument and returns an object of type Foo

    Also consider a case when you also have a copy constructor inside Foo

    Foo (const Foo& obj)     
    {     
         cout << "Copy c-tor Foo()"  << endl;    
    } 
    

    If you try writing Foo obj(Foo()), in this case you are likely to expect a call to the copy c-tor which would not be correct.

    In that case obj would be parsed as a function returning a Foo object and taking an argument of type pointer to function. This is also known as Most Vexing Parse.

    As mentioned in one of the comments Foo obj((Foo())); would make the compiler parse it as an expression (i.e interpret it as an object) and not a function because of the extra ().

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

Sidebar

Related Questions

So I am trying to compile this simple code: // In Test.h #include <iostream>
Imagine this simple piece of code: class Constructor() { var string: String = _
I am using this simple code to connect with Twitter. First line works fine
This is a simple question really. I've been using the new type of constructors
Is it a simple case of just never using the this.XYZ construct?
This simple code is not producing any sound on a couple of machines that
In using this code (adapted from here ) I get the following error: The
I'm reading someone else's Django code, using PostgreSQL, and this is something I don't
This simple example fails to compile in VS2K8: io_service io2; shared_ptr<asio::deadline_timer> dt(make_shared<asio::deadline_timer>(io2, posix_time::seconds(20))); As
This simple regex matching returns a string instead of an object on every browser

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.