- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我在一本书 http://www.acceleratedcpp.com/ 中发现了这个有趣的行- 资源 - 第 11 章 - Vec.h(我是一个 std::vector 翻版)
而且我真的不明白这个版本的运算符有什么用。为什么要定义此运算符的两个版本(常量和非常量)?
我什至试过了,在我看来,非常量版本一直被调用......你能解释一下吗?
#include <iostream>
#include <algorithm>
#include <cstddef>
#include <memory>
using namespace std;
template <class T> class Vec {
public:
typedef T* iterator;
typedef const T* const_iterator;
typedef size_t size_type;
typedef T value_type;
typedef T& reference;
typedef const T& const_reference;
Vec() { create(); }
explicit Vec(size_type n, const T& t = T()) { create(n, t); }
Vec(const Vec& v) { create(v.begin(), v.end()); }
Vec& operator=(const Vec&); // as defined in 11.3.2/196
~Vec() { uncreate(); }
T& operator[](size_type i) { cout << "T&";return data[i]; }
const T& operator[](size_type i) const { cout << "const T&!";return data[i]; }
void push_back(const T& t) {
if (avail == limit)
grow();
unchecked_append(t);
}
size_type size() const { return avail - data; } // changed
iterator begin() { return data; }
const_iterator begin() const { return data; }
iterator end() { return avail; } // changed
const_iterator end() const { return avail; } // changed
void clear() { uncreate(); }
bool empty() const { return data == avail; }
private:
iterator data; // first element in the `Vec'
iterator avail; // (one past) the last element in the `Vec'
iterator limit; // (one past) the allocated memory
// facilities for memory allocation
std::allocator<T> alloc; // object to handle memory allocation
// allocate and initialize the underlying array
void create();
void create(size_type, const T&);
void create(const_iterator, const_iterator);
// destroy the elements in the array and free the memory
void uncreate();
// support functions for `push_back'
void grow();
void unchecked_append(const T&);
};
template <class T> void Vec<T>::create()
{
data = avail = limit = 0;
}
template <class T> void Vec<T>::create(size_type n, const T& val)
{
#ifdef _MSC_VER
data = alloc.allocate(n, 0);
#else
data = alloc.allocate(n);
#endif
limit = avail = data + n;
std::uninitialized_fill(data, limit, val);
}
template <class T>
void Vec<T>::create(const_iterator i, const_iterator j)
{
#ifdef _MSC_VER
data = alloc.allocate(j - i, 0);
#else
data = alloc.allocate(j - i);
#endif
limit = avail = std::uninitialized_copy(i, j, data);
}
template <class T> void Vec<T>::uncreate()
{
if (data) {
// destroy (in reverse order) the elements that were constructed
iterator it = avail;
while (it != data)
alloc.destroy(--it);
// return all the space that was allocated
alloc.deallocate(data, limit - data);
}
// reset pointers to indicate that the `Vec' is empty again
data = limit = avail = 0;
}
template <class T> void Vec<T>::grow()
{
// when growing, allocate twice as much space as currently in use
size_type new_size = max(2 * (limit - data), ptrdiff_t(1));
// allocate new space and copy existing elements to the new space
#ifdef _MSC_VER
iterator new_data = alloc.allocate(new_size, 0);
#else
iterator new_data = alloc.allocate(new_size);
#endif
iterator new_avail = std::uninitialized_copy(data, avail, new_data);
// return the old space
uncreate();
// reset pointers to point to the newly allocated space
data = new_data;
avail = new_avail;
limit = data + new_size;
}
// assumes `avail' points at allocated, but uninitialized space
template <class T> void Vec<T>::unchecked_append(const T& val)
{
alloc.construct(avail++, val);
}
template <class T>
Vec<T>& Vec<T>::operator=(const Vec& rhs)
{
// check for self-assignment
if (&rhs != this) {
// free the array in the left-hand side
uncreate();
// copy elements from the right-hand to the left-hand side
create(rhs.begin(), rhs.end());
}
return *this;
}
int main() {
Vec<int> v;
v.push_back(5);
cout << v[0] << endl; // even now the non-const version is called!
system("pause");
}
谢谢!
最佳答案
肯定是
const T& operator[](size_type i) const // <-- note the extra const
Const 向编译器发出信号,表明调用代码不能可以修改返回值。
这与:
Rationale: if the declaring object itself is
const
there would be no way for the method to return a reference to a (part of) a membernon-const
; Const-ness cascades if you will: this is known as const-correctness.
在实践中你会经常看到像这样的 const/non-const 重载:
class Container
{
private:
int data[10];
public:
int & operator[](int i) { return data[i]; }
int const & operator[](int i) const { return data[i]; }
};
//
Container x;
Container& r = x;
const Container& cr = x;
x [3] += 1;
r [3] += 1; // just fine, non-const overload selected
cr[3] += 1; // compile error, return value `const &`
关于c++ - "const T& operator[](size_type i)"中的 const 有什么用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8250935/
在我的 for 循环中声明迭代器时研究无符号整数与有符号整数比较警告时,I read this : Whenever possible, use the exact type you will be
我有一个 std::map, float>这占用了太多内存,为了使用更少的内存,我决定将唯一字符串映射到整数(例如 std::map ,其中每个新的唯一字符串都映射到 map 的当前 size() )
文档说,std::vector 的 size_type 是/usually/size_t,这是合理的,因为实现可以选择使用不同的。 但是为什么 size_type = size_t 位于 std::a
以下代码片段编译失败: #include #include #include #include using namespace std; vector list1{1,3,5,7,11}; s
我正在编写自定义算法,有时它需要获取两个迭代器之间的距离。如果我假设 it1
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 要求提供代码的问题必须表现出对所解决问题的最低限度理解。包括尝试过的解决方案、为什么它们不起作用,以及预
std::vector的成员类型为size_type。它的printf格式说明符是什么? 请注意,size_type与size_t不同。 https://en.cppreference.com/w/c
我在这里浏览了一些关于 string::size_type 的线程,根据 C++ 标准,我确实理解这个 size_type 保证了所有字符串使用的足够分配。 我只是觉得很难相信。如果我将 C++ Pr
关闭。这个问题是not reproducible or was caused by typos .它目前不接受答案。 这个问题是由于错别字或无法再重现的问题引起的。虽然类似的问题可能是on-topi
我有一个类,它有一个类型为 vector 的私有(private)数据成员. 该类有两个实际使用vector::size_type 的公共(public)方法: 返回 vector 中元素个数的方法
在 C++ 模板中,我很难用正确的 size_type 定义变量。基本上,这将是容器中的索引类型。我知道 int 可以工作,但希望以干净的形式使用它。 template void test(Forwa
假设我有两种类型,Class1和 Class2 .然后我创建两个 vector : vector vec1; vector vec2; //create vec1 and vec2, such tha
我在一些非常有名的 C++ 书籍中看到 -- vector ivec; for (vector::size_type i = 0; i != 10; ++i) { ivec.push_back
我想以一种简单的方式编写基于索引的 for 循环。由于我的代码必须在 32 位和 64 位中运行,我收到很多关于隐式转换的警告,因为我通常使用 32 位整数,但 STL 在 64 位中使用 64 位整
我的背景主要是 R、SAS 和 VBA,我正在尝试学习一些 C++。我选择了“Accelerated C++”(Koenig,Moo)作为我关于该主题的第一本书。我在 comp 的理论背景。科学。诚然
下面的类不编译: template, class Allocator = std::allocator> class MyContainer { public: std::vector d
我经常有一些类,它们大多只是一些 STL 容器的包装器,如下所示: class Foo { public: typedef std::vector Vec; typedef Vec::size
显然,unordered_set::erase和 unordered_set::count返回一些不是严格 bool 值的东西(从逻辑上讲,也就是说,我不是在谈论实际类型)。 链接页面读取第三个版本的
#include #include using namespace std; int main() { vector student_marks(20); for (vector:
我一直在通过在不同平台上编译我的应用程序来对其进行一些测试,从 64 位系统到 32 位系统的转变暴露出许多问题。 我大量使用 vector 、字符串等,因此需要对它们进行计数。但是,我的函数也使用
我是一名优秀的程序员,十分优秀!