静态成员中对类静态成员的未定义引用

2023-12-02C/C++开发问题
3

本文介绍了静态成员中对类静态成员的未定义引用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我在 C++ 中创建了一个带有自引用类的链表,我想要一个名为startPointer"的类型为 Item(Item 是类名)的静态指针,以便当我调用我的静态成员函数free"时,它可以通过使用 Item::startPointer 释放内存,但我收到一个错误(在代码后显示).请帮助,

I am creating a linked list with self referential class in C++ and I want to have a static pointer of the type Item (Item is the class name) named "startPointer" so that when i call my static member function "free" , it can free up the memory by using Item::startPointer but i am getting an error(shown after code). Pls Help,

class Item
{
    public:
    std::string name;
    int row,column;
    int fileType;
    Item *ptr;
    static Item *startPointer;
    void setNextPointer(Item* ptr)
    {
        ptr=ptr;
    }
    Item *getNextPointer()
    {
        return ptr;
    }
    static void free()
        {
        Item *p,*temp;
        p=startPointer;
        while(p!=NULL)
        {
            temp=p;
            p=p->getNextPointer();
            delete temp;
        }
    }

};

<小时>

cube.o:cube.cpp:(.text$_ZN4Item4freeEv[Item::free()]+0x8): undefined reference to `Item::startPointer'
collect2: ld returned 1 exit status

mingw32-make.exe: *** [cube.exe] Error 1

Execution terminated

推荐答案

你必须像这样定义你的静态成员:

You have to define your static member like this:

Item* Item::startPointer = nullptr; // or = NULL; if your cpp version is below c++11

在单个编译单元(cpp文件)中写这样一行,否则只是声明成员.

Write such a line in a single compilation unit (cpp file), otherwise the member is just declared.

这篇关于静态成员中对类静态成员的未定义引用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

无法访问 C++ std::set 中对象的非常量成员函数
Unable to access non-const member functions of objects in C++ std::set(无法访问 C++ std::set 中对象的非常量成员函数)...
2024-08-14 C/C++开发问题
17

从 lambda 构造 std::function 参数
Constructing std::function argument from lambda(从 lambda 构造 std::function 参数)...
2024-08-14 C/C++开发问题
25

STL BigInt 类实现
STL BigInt class implementation(STL BigInt 类实现)...
2024-08-14 C/C++开发问题
3

使用 std::atomic 和 std::condition_variable 同步不可靠
Sync is unreliable using std::atomic and std::condition_variable(使用 std::atomic 和 std::condition_variable 同步不可靠)...
2024-08-14 C/C++开发问题
17

在 STL 中将列表元素移动到末尾
Move list element to the end in STL(在 STL 中将列表元素移动到末尾)...
2024-08-14 C/C++开发问题
9

为什么禁止对存储在 STL 容器中的类重载 operator&amp;()?
Why is overloading operatoramp;() prohibited for classes stored in STL containers?(为什么禁止对存储在 STL 容器中的类重载 operatoramp;()?)...
2024-08-14 C/C++开发问题
6