gpt4 book ai didi

c++ - 链接器错误未解析的外部符号与我的 cnt 变量

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

我遇到了静态变量的链接问题。这是我第一次尝试使用静态变量。我正在创建一个 vector ,并希望 cnt 变量在所有 Student 对象中都是静态的。

我四处搜索试图弄清楚这一点。我读过其他人有这个问题,他们没有声明静态变量,他们需要专门为静态变量创建一个新对象。

我认为在构造函数中声明并设置了 sCnt 变量。在类中实现静态成员变量的正确方法是什么?

学生.h

#pragma once
#include <iostream>

using namespace std;

class Student
{
public:
Student();
Student(string ID);
virtual ~Student(void);
void cntReset();
int getCnt() const;
int getID() const;
bool operator< (const Student& s) const;
bool operator== (const Student& s) const;

protected:
int id;
static int sCnt;

private:
};

学生.cpp

#include "Student.h"

Student::Student()
{
id = 0;
sCnt = 0;
}

Student::Student(string ID)
{
id = atoi(ID.c_str());
sCnt = 0;
}

最佳答案

你需要定义它,恰好一次。将以下内容添加到 cpp 文件中:

int Student::sCnt = 0; // Note the ' = 0' is optional as statics are
// are zero-initialised.

假设它应该计算 Student 实例的数量,不要在 Student 构造函数中将其设置为 0,递增它并在 Student 析构函数中递减。

关于c++ - 链接器错误未解析的外部符号与我的 cnt 变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10677211/

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