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();
}

I'm getting this error from Dev-C++:

a class-key must be used when declaring a friend

But it runs fine when compiled with Microsoft Visual C++ compiler.

link|improve this question

2  
Er, please can you fix the formatting! I tried, but it was too hard. – David Heffernan Aug 28 '11 at 11:32
1  
Please could you fix your whitespace. – Oli Charlesworth Aug 28 '11 at 11:33
One note, don't use Dev-C++, it's outdated. – Griwes Aug 28 '11 at 11:41
feedback

2 Answers

up vote 8 down vote accepted

You need

 friend class two;

instead of

 friend two;

Also, you don't need to forward-declare your class separately, because a friend-declaration is itself a declaration. You could even do this:

//no forward-declaration of two
class one
{
   friend class two;
   two* mem;
};

class two{};
link|improve this answer
1  
thanxx for the help but y i was'nt getting error with visual c++ compiler – shubhendu mahajan Aug 28 '11 at 11:45
2  
@desprado07: Well, because many compilers are not exactly strict with this rule (that the word class or struct be present in the friend declaration). It is however mandated by the standard as per 11.4. The accepted answer to another question may help you. – Armen Tsirunyan Aug 28 '11 at 11:47
4  
It's allowed to be omitted in C++11 – Johannes Schaub - litb Aug 28 '11 at 11:53
feedback

Your code has:

friend two;

Which should be:

friend class two;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.