如何调用在方法中接收对象的非成员函数

发布于 2024-11-03 19:24:06 字数 277 浏览 6 评论 0原文

假设我有一个 Student 类,并且我已经声明了一个名为“function_A”的非成员函数,该函数接受类型为 Student 的参数作为参数。

现在说在 Student 类中,我有一个成员函数,在其中,我想引用之前声明的非成员函数“function_A”。我将传递什么作为参数(参数本身必须是 Student 类型)。

代码

Say I have a class Student, and I have already declared a non-member function called "function_A" that takes in as an argument, type Student.

Now say INSIDE the Student class, I had a member function, and in it, I wanted to reference the non-member function, "function_A", declared earlier. What would I pass in as the argument (the argument itself must be type Student).

code

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦醒灬来后我 2024-11-10 19:24:06

你的意思是这样的吗?

void function_A(Student s);

class Student { 
   void function_A() {
        ::function_A(*this);
   }

如果成员函数的名称与 function_A 不同,我看不到任何问题。

Do you mean something like this?

void function_A(Student s);

class Student { 
   void function_A() {
        ::function_A(*this);
   }

if the member function's name is different than function_A, I can't see any problem.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文