#include <iostream>
class A
{int a,b;
public:
A(int x,int y);
void display();
friend void show(A t);
};
A::A(int x,int y)
{a=x;b=y;}
void display()
{cout<<a<<endl;
}
void show(A t)
{
cout<<t.b<<endl;
}
void main()
{
A temp(1,2);
temp.display();
temp.show(temp);
cout<<temp.a<<endl;
}
c++ 程序改错 求大佬解答
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
1条回答 默认 最新
- 云中小筑 2021-01-18 22:24关注
下面是修改过的代码,可参考理解
#include <iostream> using namespace std; //后面的cout需要用到 class A { int a,b; //默认是private属性 public: A(int x,int y); void display(); friend void show(A t); }; A::A(int x,int y) { a=x; b=y; } void A::display() { cout<<a<<endl; } void show(A t) { cout<<t.b<<endl; } int main() { A temp(1,2); temp.display(); show(temp); //友元函数不属于类的成员,不能用 . 来调用 //cout<<temp.a<<endl; //C++默认是private属性的,不能直接调用 }
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
悬赏问题
- ¥15 乌班图ip地址配置及远程SSH
- ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
- ¥15 PSPICE制作一个加法器
- ¥15 javaweb项目无法正常跳转
- ¥15 VMBox虚拟机无法访问
- ¥15 skd显示找不到头文件
- ¥15 机器视觉中图片中长度与真实长度的关系
- ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
- ¥15 java 的protected权限 ,问题在注释里
- ¥15 这个是哪里有问题啊?