문제

struct base {
};

//struct derived { // <--- this one works
struct derived : public base { // <--- but this one doesn't
  double x;
};

main () {
  derived d{0.5};
  return 0;
}

What is the way to initialize derived using braces, meaning without explicitly writing a constructor?

도움이 되었습니까?

해결책

Only aggregates may be initialized this way (without defining your own constructor that is) and one of the requirements to be an aggregate is to not have any base classes. In short, you can't do that.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top