الاثنين، 23 ديسمبر 2013
1:34 ص

friend function with two classes

ايجاد العدد الاكبر بين two class باستخدام friend function

#include "stdafx.h"
#include <iostream>
#include<conio.h>
using namespace std;
class abc; //declaration
class xyz
{
private:
int a;
public:
void setvalue(int b)
{
a = b;
}
friend void max(abc, xyz);
};
class abc
{
private:
int x;
public:
void setvalue(int y)
{
x = y;
}
friend void max(abc, xyz);
};
void max(abc g, xyz h)
{
if (g.x >= h.a)
cout << g.x;
else
cout << h.a;
}
void main()
{
abc a;
a.setvalue(55);
xyz x;
x.setvalue(88);
max(a,x);
_getch();
}

0 التعليقات:

إرسال تعليق