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.
別のクラスから継承されたクラスを必要とするプログラムを書いています。どうすればこれを行うことができますか?
Code::Blocks 12.11でコンパイルしています
class ChildClass : public ParentClass { };
はpublic、すべてのメンバーをParentClass公開するように指示します (メンバーが で公開されている場合ParentClass)。protectedあるいは、またはを使用してのメンバーprivateを非表示にすることもできます。ParentClassChildClass
public
ParentClass
protected
private
ChildClass