静态函数是类方法,只访问静态成员而不接收 this 指针;友元函数不属于类,可以访问所有成员并接收 this 指针。 C++ 中静态函数与友元函数的区别 静态函数 属于类但并不属于任
静态函数是类方法,只访问静态成员而不接收 this 指针;友元函数不属于类,可以访问所有成员并接收 this 指针。
C++ 中静态函数与友元函数的区别
静态函数
友元函数
表格总结
特征 | 静态函数 | 友元函数 |
---|---|---|
类成员资格 | 是 | 不是 |
访问权限 | 类静态成员 | 类所有成员 |
this 指针 | 不接收 | 可以接收 |
声明方式 | static 关键字 | friend 关键字 |
实战案例
静态函数示例: 计算圆的面积
class Circle {
public:
static double calculateArea(double radius) {
return 3.14 * radius * radius;
}
};
int main() {
double radius = 5.0;
double area = Circle::calculateArea(radius);
cout << "圆的面积:" << area << endl;
return 0;
}
友元函数示例: 打印私有成员的值
class Student {
private:
int age;
public:
friend void printAge(Student& student);
};
void printAge(Student& student) {
cout << "年龄:" << student.age << endl;
}
int main() {
Student student;
student.age = 20;
printAge(student);
return 0;
}
--结束END--
本文标题: C++ 静态函数与友元函数有什么区别?
本文链接: https://lsjlt.com/news/604980.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0