web-dev-qa-db-ja.com

パラメトリックコンストラクターを持たない構造体でstd :: make_sharedを使用できますか?

次のようなstructがあるとします。

struct S
{
int i;
double d;
std::string s;
};

これはできますか?

std::make_shared<S>(1, 2.1, "Hello")
16
Narek

いいえ、できません。それを実行できるようにするには、独自のコンストラクターを定義する必要があります。

#include <iostream>
#include <memory>
#include <string>

struct S
{
    S(int ii, double dd)
    : i(ii)
    , d(dd)
    { }
  int i;
  double d;
};

int main()
{
 // S s{1, 2.1};
  auto s = std::make_shared<S>(1, 2.1);
  //or without constructor, you have to create manually a temporary
  auto s1 = std::make_shared<S>(S{1, 2.1});

}
12
dau_sama