gpt4 book ai didi

c++ - 调用其他Class的成员函数

转载 作者:行者123 更新时间:2023-11-28 03:02:50 24 4
gpt4 key购买 nike

我有 2 个类(class)。

Class A
{
void printMe();
}

cpp 文件:

A::printMe(){
cout<<"yay";
}

Class B
{
void DoSomething();
}

cpp文件

 B::DoSomething(){

A::printMe();
}

如何在 B 类中创建 A 类的对象并将其用于函数 printMe();

引用资料,但答案不被接受,它们对我不起作用 HERE

最佳答案

假设你想调用 A 类对象的 printMe() 成员函数:

B::DoSomething() {
A a;
a.printMe();
}

但是,您还需要将 printMe() 函数声明为公开:

class A {
public:
void printeMe();
}

关于c++ - 调用其他Class的成员函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20327808/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com