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.
C# のような言語で。クラスのアクセス レベルを制御するために、クラスの前に public または internal を配置できます。これは C++ DLL でどのように行われますか?
あるクラスを別のクラス内にネストすることにより:
class A { public: class B {}; protected: class C {}; private: class D {}; };