Örnek
Şöyle yaparız.
Şöyle yaparız.
class FooBase {
protected:
virtual void on_idle() { /* no-op by default */ }
};
class Foo : public FooBase {
void on_idle() override final
{
delete this;
}
};
Hiç yorum yok:
Yorum Gönder