class two;
class one
{
int a;
public:
one()
{
a = 8;
}
friend two;
};
class two
{
public:
two() { }
two(one i)
{
cout << i.a;
}
};
int main()
{
one o;
two t(o);
getch();
}
我越來越從開發 - C++這樣的錯誤:如何解決「聲明朋友時必須使用類」錯誤?
a class-key must be used when declaring a friend
但是,當使用Microsoft Visual C++編譯器編譯運行正常。
呃,請你能修正格式!我試過了,但太難了。 –
請你可以修復你的空白。 –
請注意,不要使用Dev-C++,它已經過時了。 – Griwes