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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T22:08:50+00:00 2026-06-14T22:08:50+00:00

If I have a struct and I initialize it like so: #include <memory> struct

  • 0

If I have a struct and I initialize it like so:

#include <memory>

struct MyHandle
{
        std::shared_ptr<int> handle_;
};

int main()
{
        MyHandle m{std::make_shared<int>(42)};
}

Is the fact that aggregate initialization of MyHandle occurs so no constructor is used to initialize object of type MyHandle?

  • 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-06-14T22:08:51+00:00Added an answer on June 14, 2026 at 10:08 pm

    That’s correct. Aggregate initialisation is only allowed for classes with no user-provided constructors, and (in the words of the standard, C++11 8.5.1/2), “each member is copy-initialised from the corresponding initialiser-clause”. So no constructor for MyHandle is used, only a copy, move or conversion constructor for each member of class type.

    The implicit default constructor, which default-initialises each member, is used for default and value initialisation; but it can’t be used for aggregate initialisation since each member can only be initialised once.

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

Sidebar

Related Questions

I have a struct that I initialize like this: typedef struct { word w;
I have a struct that looks something like: struct foo_t { template <std::size_t x,
I have a simple structure that is defined like so: typedef struct { int
I have a defined struct like this one: typedef struct tag_GLOBAL_VAR { int array1[4];
I have a struct like this: typedef struct { int a; int b; int
I have a C library that has types like this: typedef struct { //
Ok so I have struct like this typedef struct { float x; float y;
I'm using LLVM-clang on Linux. Suppose in foo.cpp I have: struct Foo { int
I have a struct, MyStruct , that has a private member private bool[] boolArray;
I have a struct that contains three lists and an integer as can be

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.