Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこのインターフェースを持っています:
struct I { virtual void f(int) = 0; virtual void f(float) = 0; };
I次のクラスに似たものを使用して実装できますか?
I
struct C : public I { template<typename T> void f(T); };