Why is the constructor of std::in_place_t defaulted and explicit?

317 Views Asked by At

cppreference shows the following definition of std::in_place_t:

struct in_place_t {
    explicit in_place_t() = default;
};
inline constexpr std::in_place_t in_place{};

Why have they added an explicit and defaulted constructor? Why it isn't left out? What are the benefits?

2

There are 2 best solutions below

1
On BEST ANSWER

You want a type like this to only be explicitly constructible, because it exists to denote a particular kind of constructor overload, in places where {} might reasonably be found.

Consider the following constructions

std::optional<DefaultConstructible> dc1({}); // dc1 == std::nullopt
std::optional<DefaultConstructible> dc2(std::in_place); // dc2 == DefaultConstructible()
3
On

If you leave out the constructor it will not be explicit. If you don't = default it it will not be trivial.

So, if you want the constructor to be explicit and you also want it to remain trivial, what you see is the only option available.