In the following code, which of the following variables can be accessed in “Friend”?
class Base
{
public: int a;
protected: int b;
private: int c;
};
class Derived : Base
{
int d;
friend Friend;
};
class Friend
{
Derived derived;
};
class Base
{
public: int a;
protected: int b;
private: int c;
};
class Derived : Base
{
int d;
friend Friend;
};
class Friend
{
Derived derived;
};
only a and b
a,b and c
only a
error
Hãy suy nghĩ và trả lời câu hỏi trước khi xem đáp án
Tổng hợp câu hỏi trắc nghiệm lập trình C/C++ có đáp án và lời giải đầy đủ nhằm giúp các bạn dễ dàng ôn tập lại toàn bộ các kiến thức.