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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T18:28:48+00:00 2026-05-25T18:28:48+00:00

In a GoogleTechTalks video on Youtube , Bjarne Stroustrup talks about the upcoming C++0x

  • 0

In a GoogleTechTalks video on Youtube, Bjarne Stroustrup talks about the upcoming C++0x standard. In the video he mentions the following example:

#include <iostream>

struct Sick
{
    Sick(double d)       { std::cout << d << "\n"; }
    explicit Sick(int i) { std::cout << i << "\n"; }
};


int main()
{
    Sick s1 = 2.1;
    Sick s2(2.1);
}

Did he mean to place the explicit keyword before Sick(double) rather than Sick(int), in order to highlight problems associated with implicit conversions in certain contexts?

  • 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-25T18:28:49+00:00Added an answer on May 25, 2026 at 6:28 pm

    In his discussion, Stroustrup mentions that a direct initialization, such as

    Sick s2(2.1);
    

    will consider only constructors marked explicit if there are any explicit constructors. That’s not my experience with several compilers (including GCC 4.6.1 and MSVC 16/VS 2010), and I can’t find such a requirement in the standard (though I’d be interested if someone can point it out).

    However, if ints are used in the initializers, I think the example would show what Stroustrup meant to demonstrate:

    #include <iostream>
    
    struct Sick
    {
        Sick(double d)       { std::cout << "double " << d << "\n"; }
        explicit Sick(int i) { std::cout << "int " << i << "\n"; }
    };
    
    
    int main()
    {
        Sick s1 = 2;
        Sick s2(2);
    }
    

    Running the above will display:

    double 2
    int 2
    

    Shows that the two apparently equivalent initializations actually select different constructors.

    (Or as Truncheon mentioned in the question – and I missed – that the explicit keyword should be on the Sick(double d) constructor).

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

Sidebar

Related Questions

No related questions found

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.