gpt4 book ai didi

c++ - 调用包含在头文件中的类对象的成员函数

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:42:18 28 4
gpt4 key购买 nike

我是论坛的新手,我想调用包含的头文件的成员函数。这是我编写的代码

#include<stdio.h>
#include "Abc.h"

CAbc *a;//CAbc is a class present in Abc.h

int main(int argc,char **argv)
{
int i=10;
float j=15.5;
bool x;
x=a->method(i,j);//method is a member function of CAbc
if(x)
{
printf("Working Correctly");
}
else
{
printf("Not Working");
}

如果我编译它使用

g++ -I/path/to/include code.cpp

我得到了错误

/tmp/cc5JgLfF.o: In function `main':
code.cpp:(.text+0x3d): undefined reference to `CAbc::method(int,float)'
collect2: ld returned 1 exit status

我也试过给

x=a::method(i,j);

我得到的不是类或命名空间

谁能告诉我我这样做对不对?

最佳答案

看起来您好像忘记包含实现源/对象。

试试这个:

g++ -I/path/to/include Abc.cpp code.cpp

只要你的Abc.h的实现类对应Abc.cpp即可。

问候,
丹尼斯 M.

关于c++ - 调用包含在头文件中的类对象的成员函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5092752/

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