r/cpp 13d ago

C++26: std::polymorphic

https://www.sandordargo.com/blog/2026/08/19/cpp26-polymorphic
95 Upvotes

44 comments sorted by

View all comments

Show parent comments

3

u/robin-m 12d ago

With c++23 deducing this you can simplify your code to just:

c++23    class Shape {     public:         template <class Self>         std::unique_ptr<Shape> clone(this Self& self) {             return std::make_unique<Self>(self);         }     };          class Rectangle: public Shape {     };          class Triangle: public Shape {     };

2

u/_Noreturn 12d ago

Deducing this causes issues if you inherit from the base class more than once, (it increases object size) also, this doesn't work since clone() isn't virtual and templates can't be virtual

2

u/robin-m 12d ago

It seems that both using CRTP and deducing this gives the save object size, what do you mean? godbolt

3

u/_Noreturn 12d ago

cpp struct D {}; struct A : D {}; struct B : D { A a; };

you would expect since 'B' inherits from an empty class and it only has one member the sizeof would be 1, but it is 2 since the base class D is repeated twice and must have unique address first in the inheritance in B and in the member A.

now if this uses crtp the base classes would be unique

cpp template<class T> struct D {}; struct A : D<A> {}; struct B : D<B> { A a; }; // sizeof(B) == 1

1

u/LB-- Professional+Hobbyist 12d ago

Does [[no_unique_address]] help here?

3

u/friedkeenan 12d ago

No. According to the standard, two different objects of the same type cannot live at the same address in any circumstance, even if the objects are empty.

1

u/LB-- Professional+Hobbyist 12d ago

Ah right, I wonder if just wrapping it in an empty template class that inherits it for you would suffice as a workaround or not...