gpt4 book ai didi

c++ - 通过引用方法传递对象

转载 作者:行者123 更新时间:2023-11-30 00:56:18 24 4
gpt4 key购买 nike

我认为我犯的错误很愚蠢,但我不知道我做错了什么。我有一个包含静态和非静态变量以及一些方法的类,这些方法都是公开的。在我的程序中,我想创建一个对象并将该对象通过引用传递给通用方法。

程序无法编译,编译器会抛出非常奇怪的错误消息。

Undefined symbols for architecture x86_64: "prueba::num", referenced from: _main in ccbRZYqe.o metodoC(prueba*) in ccbRZYqe.o prueba::prueba()in ccbRZYqe.o prueba::inicio() in ccbRZYqe.o "prueba::flag", referenced from: metodoC(prueba*) in ccbRZYqe.o prueba::prueba()in ccbRZYqe.o prueba::inicio() in ccbRZYqe.o ld: symbol(s) not found for architecture x86_64 collect2: ld returned 1 exit status

代码

#include <iostream>

using namespace std;

class prueba
{
private:
public:
static bool flag;
static int num;
float complejo;

// Metodos
//--------------
prueba()
{
flag = false;
num = 0;
complejo = 0.0;
}

void inicio()
{
flag = true;
num = 5;
complejo = 3.2;
}

bool cambio()
{
flag++;
num++;
complejo++;
}
};

bool metodoC(prueba* ensayo)
{
cout << "-----------------------------------------" << endl;
cout << "- flag: " << ensayo->flag << endl;
cout << "- num: " << ensayo->num << endl;
cout << "- Complejo: " << ensayo->complejo << endl;
cout << "-----------------------------------------" << endl;

return true;
}

//-----------------------------------
// M A I N
//-----------------------------------
int main(int argc, char *argv[])
{
prueba test;

test.inicio();

test.num += 2;
test.complejo += 5.2;

metodoC( &test );

return 0;
}

最佳答案

您需要定义静态成员。它们仅被声明。

class prueba {
// as before
};

并且在实现文件中:

bool prueba::flag=false;
int prueba::num=0;

请注意,您不应将定义放在标题中,因为您将获得每个翻译单元的静态定义。您需要将它们放在一个实现文件中,然后使用该文件制作一个客户可以构建的目标文件。

但要小心,每次实例化一个新的 prueba 对象时,都会在构造函数中重置静态成员。

关于c++ - 通过引用方法传递对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10566590/

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