类A中一个成员函数声明为类B的友元成员函数,在类B中怎么调用这个友元成员函数,c++
发布网友
发布时间:2023-03-23 17:15
我来回答
共2个回答
热心网友
时间:2023-10-15 10:17
直接调用啊,友元函数不属于类,所以不需要带::
例子
#include <iostream>
#include <math.h>
using namespace std;
class Point
{
public:
Point(double xx, double yy) { x=xx; y=yy; }
void Getxy();
friend double Distance(Point &a, Point &b);
private:
double x, y;
};
void Point::Getxy()
{
cout<<"("<<x<<","<<y<<")"<<endl;
}
double Distance(Point &a, Point &b)
{
double dx = a.x - b.x;
double dy = a.y - b.y;
return sqrt(dx*dx+dy*dy);
}
void main()
{
Point p1(3.0, 4.0), p2(6.0, 8.0);
p1.Getxy();
p2.Getxy();
double d = Distance(p1, p2);
cout<<"Distance is "<<d<<endl;
}
热心网友
时间:2023-10-15 10:17
B类要通过A类的对象来调用的