Avatar
omochimetaru 1/24/2020 2:49 AM
template <Self> class RetainCounted<Self> { Self * retain() { ... } } class Cat: public RetainCounted<Cat> {} auto c1 = new Cat(); auto c2 = c1->retain(); // c2の型がCat*になってほしい (edited)
2:49 AM
ちょっと久しぶりで文法の自身ないですが↑これが頻出