【发布时间】:2015-04-30 21:07:21
【问题描述】:
我正在尝试通过实现各种常见的数据结构来提高我对 C++ 的了解。我从链表开始。我希望能够使用基于范围的 for 循环。我阅读了this question,然后基于this sample code 实现了我的实现。
我的问题是我目前正在用nullptr 终止我的链表;最后的ListNode 将其数据成员next_ 设置为nullptr。因此,我将nullptr 作为LinkedList<T>::end() 函数内迭代器构造函数中的参数传入,我认为它应该正确终止函数。它按预期工作;当我重载<< 时,它会正确地将内容写入流。
不幸的是,它会出现一些内存错误(在使用 DrMemory 时看到)。这是因为有一行不正确地尝试从nullptr 中提取数据成员(代码和解释如下)。但是,为 nullptr 添加比较以避免失败(见下文)。最后,因为重载(不)等式运算符需要它们进行引用,所以在列表的最后一个元素处传递了对 nullptr 的引用。根据this answer,这是一个很大的诺诺。我怎样才能修复我当前的实现,或者重新设计我的实现以避免nullptr?
我正在使用mingw32-g++编译器,版本4.8.1编译,如下
$ mingw32-g++ -g -Wall -Werror -Wextra -pedantic -std=gnu++11 -c <cpp file>
$ mingw32-g++ -o main <object files>
然后我在 DrMemory 中使用
$ drmemory -- main
在 DrMemory 中运行它可以得到输出
UNINITIALIZED READ: reading register edx
# 0 ConstListIterator<>::operator!= [structures/listiterator.hpp:167]
# 1 _fu0___ZSt4cout [C:\Users\dannn_000\documents\github\datastructures/main.cpp:10]
# 2 __mingw_CRTStartup
# 3 mainCRTStartup
# 4 ntdll.dll!RtlInitializeExceptionChain +0x8e (0x77e6b5af <ntdll.dll+0x5b5af>)
# 5 ntdll.dll!RtlInitializeExceptionChain +0x59 (0x77e6b57a <ntdll.dll+0x5b57a>)
Note: @0:00:00.738 in thread 9500
Note: instruction: cmp %edx %eax
根据 DrMemory 的输出,问题出在 ConstListIterator 中的重载运算符 != 实现中,通过查看我们可以清楚地看到问题所在:
return current_ != rhs.current_;
当到达最后一个节点(nullptr)时将执行未初始化的读取。我心想“哦,很容易解决”并将其更改为
if (rhs == nullptr)
return current_ != nullptr;
return current_ != rhs.current_;
编译时会报错
mingw32-make : In file included from structures/list.hpp:16:0,
At line:1 char:1
+ mingw32-make main 2> t.txt
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (In file include.../list.hpp:16:0,:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
from structures/linkedlist.hpp:16,
from main.cpp:1:
structures/listiterator.hpp: In instantiation of 'bool ConstListIterator<T>::operator!=(const ConstListIterator<T>&) [with T =
int]':
main.cpp:10:16: required from here
structures/listiterator.hpp:167:10: error: no match for 'operator==' (operand types are 'const ConstListIterator<int>' and
'std::nullptr_t')
if (rhs == nullptr)
^
structures/listiterator.hpp:167:10: note: candidate is:
structures/listiterator.hpp:153:6: note: bool ConstListIterator<T>::operator==(const ConstListIterator<T>&) [with T = int] <near
match>
bool ConstListIterator<T>::operator==(const ConstListIterator<T>& rhs)
^
structures/listiterator.hpp:153:6: note: no known conversion for implicit 'this' parameter from 'const
ConstListIterator<int>*' to 'ConstListIterator<int>*'
structures/listiterator.hpp:168:19: error: no match for 'operator!=' (operand types are 'ListNode<int>*' and 'const
ConstListIterator<int>')
return current_ != rhs;
^
mingw32-make: *** [main.o] Error 1
然后我继续添加一个成员函数,将 ConstListIterator 与 std::nullptr_t 进行比较,但添加后我得到了一个新错误
mingw32-make : In file included from structures/list.hpp:16:0,
At line:1 char:1
+ mingw32-make main 2> t.txt
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (In file include.../list.hpp:16:0,:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
from structures/linkedlist.hpp:16,
from main.cpp:1:
structures/listiterator.hpp: In instantiation of 'bool ConstListIterator<T>::operator!=(const ConstListIterator<T>&) [with T =
int]':
main.cpp:10:16: required from here
structures/listiterator.hpp:182:10: error: no match for 'operator==' (operand types are 'const ConstListIterator<int>' and
'std::nullptr_t')
if (rhs == nullptr)
^
structures/listiterator.hpp:182:10: note: candidates are:
structures/listiterator.hpp:156:6: note: bool ConstListIterator<T>::operator==(const ConstListIterator<T>&) [with T = int] <near
match>
bool ConstListIterator<T>::operator==(const ConstListIterator<T>& rhs)
^
structures/listiterator.hpp:156:6: note: no known conversion for implicit 'this' parameter from 'const
ConstListIterator<int>*' to 'ConstListIterator<int>*'
structures/listiterator.hpp:162:6: note: bool ConstListIterator<T>::operator==(std::nullptr_t&) [with T = int;
std::nullptr_t = std::nullptr_t]
bool ConstListIterator<T>::operator==(std::nullptr_t& rhs)
^
structures/listiterator.hpp:162:6: note: no known conversion for argument 1 from 'std::nullptr_t' to
'std::nullptr_t&'
structures/listiterator.hpp:183:19: error: no match for 'operator!=' (operand types are 'ListNode<int>*' and 'const
ConstListIterator<int>')
return current_ != rhs;
^
mingw32-make: *** [main.o] Error 1
这是我的代码的(简化)版本。我已经删除了一些我认为与此代码无关的成员函数,并且我已尽我所能在代码本身中删除它们的使用。
listnode.hpp
#ifndef LISTNODE_HPP
#define LISTNODE_HPP 1
template <typename T>
struct ListNode {
public:
ListNode() = delete;
ListNode(T value);
ListNode<T>* getNext();
void setNext(ListNode<T>* node);
T& getValue();
const T& getCValue() const;
void setValue(T value);
private:
T value_;
ListNode<T>* next_;
};
// Standard implementations of all member functions.
#endif
我有另一个文件“list.hpp”,其中包含我的LinkedList 类的抽象基类,所有成员函数都是纯虚函数。为简洁起见被排除在外。该文件还具有用于处理非常量迭代器的适当成员函数,但它们或多或少相同,并且不是此处使用的,因此被排除在外。
linkedlist.hpp
#ifndef LINKEDLIST_HPP
#define LINKEDLIST_HPP 1
#include <cstddef>
#include "listnode.hpp"
#include "list.hpp"
#include "listiterator.hpp"
#include "../exceptions.hpp"
template <typename T>
class LinkedList : public List<T>
{
public:
LinkedList();
LinkedList(T* arr, std::size_t length);
~LinkedList();
ConstListIterator<T> begin() const;
ConstListIterator<T> end() const;
private:
std::size_t numElements_;
ListNode<T>* head_;
ListNode<T>* tail_;
};
template <typename T> inline LinkedList<T>::LinkedList() :
numElements_(0), head_(nullptr), tail_(nullptr) {
}
template <typename T> inline LinkedList<T>::LinkedList(
T* arr, std::size_t length) :
numElements_(length), head_(nullptr), tail_(nullptr) {
head_ = new ListNode<T>(arr[0]);
ListNode<T>* current = nullptr;
ListNode<T>* next = nullptr;
current = head_;
for (std::size_t i = 1; i < length; ++i) {
next = new ListNode<T>(arr[i]);
current->setNext(next);
current = next;
}
tail_ = current;
}
template <typename T> inline LinkedList<T>::~LinkedList()
{
ListNode<T>* current = head_;
ListNode<T>* next = nullptr;
for (std::size_t i = 0; i < numElements_; ++i) {
next = current->getNext();
delete current;
current = next;
}
}
template <typename T> inline
ConstListIterator<T> LinkedList<T>::begin() const
{
return ConstListIterator<T>(head_);
}
template <typename T> inline
ConstListIterator<T> LinkedList<T>::end() const
{
return ConstListIterator<T>(nullptr);
}
#endif
最后,我的迭代器的实现。同样,我排除了这些的非常量版本(出于与上述相同的原因)。
listiterator.hpp
#ifndef LISTITERATOR_HPP
#define LISTITERATOR_HPP 1
#include <iterator>
#include "listnode.hpp"
template <typename T>
class ConstListIterator
{
public:
typedef std::forward_iterator_tag iterator_category;
ConstListIterator() = delete;
ConstListIterator(ListNode<T>* node);
ConstListIterator operator++();
ConstListIterator operator++(int);
const ListNode<T>& operator*();
const ListNode<T>* operator->();
bool operator==(const ConstListIterator<T>& rhs);
bool operator==(std::nullptr_t& rhs);
bool operator!=(const ConstListIterator<T>& rhs);
private:
ListNode<T>* current_;
};
template <typename T> inline
ConstListIterator<T>::ConstListIterator(ListNode<T>* node) :
current_(node) {
}
template <typename T> inline
ConstListIterator<T> ConstListIterator<T>::operator++()
{
current_ = current_->getNext();
return *this;
}
template <typename T> inline
ConstListIterator<T> ConstListIterator<T>::operator++(int)
{
current_ = current_->getNext();
return *this;
}
template <typename T> inline
const ListNode<T>& ConstListIterator<T>::operator*()
{
return *current_;
}
template <typename T> inline
const ListNode<T>* ConstListIterator<T>::operator->()
{
return current_;
}
template <typename T> inline
bool ConstListIterator<T>::operator==(const ConstListIterator<T>& rhs)
{
return current_ == rhs.current_;
}
template <typename T> inline
bool ConstListIterator<T>::operator!=(const ConstListIterator<T>& rhs)
{
return current_ != rhs.current_;
}
#endif
还有我用来运行这一切的文件
main.cpp
#include "structures/linkedlist.hpp"
#include <iostream>
int main()
{
LinkedList<int> list;
list.append(1);
for (auto i : list)
std::cout << i << std::endl;
return 0;
}
【问题讨论】:
-
我可以告诉你
std::nullptr_t &不是一个好主意。nullptr是纯右值。 prvalues 不绑定到非常量左值引用。您还缺少不修改对象的函数上的const。
标签: c++ c++11 reference linked-list iterator