gpt4 book ai didi

c++ - 具有多个模板参数的模板容器与具有不同模板参数的其他模板容器交互

转载 作者:太空狗 更新时间:2023-10-29 21:06:45 25 4
gpt4 key购买 nike

标题很冗长,是的,但我不确定还能怎么说。假设我有一个容器类,它有两个模板参数,第一个是类型,第二个是容器本地存储的大小。

现在我们有多个具有不同容器存储大小的容器。本质上,容器函数(无论如何都是公共(public)函数)只真正关心 TN 仅用于分配本地存储(如果 N 不够,则使用分配器)。

我整理了一个简单的示例实现来展示我遇到的问题。

#include <iostream>

template <typename T, size_t N = 10>
class TestArray
{
public:
T Local[N];

class Iterator
{
public:
T* Array;
int Index;

Iterator() : Array(NULL), Index(-1) { }
Iterator(T* _array, int _index) : Array(_array), Index(_index) { }

bool operator == (const Iterator& _other) const
{
return _other.Index == Index && _other.Array == Array;
}

void Next() { ++Index; }
void Prev() { --Index; }

T& Get() { return Array[Index]; }
};

T& operator [] (const int _index) { return Local[_index]; }

Iterator Begin() { return Iterator(Local, 0); }
Iterator End() { return Iterator(Local, N); }

template <size_t _N>
void Copy(const TestArray<T, _N> &_other, int _index, int _count)
{
int i;

for (i = 0; i < _count; i++)
Local[_index + i] = _other[i];
}
};

这实际上是一个由两部分组成的问题。我将只关注第一部分的这个问题,并问另一个关于第二部分的问题。我尝试按如下方式使用它:

int main() {

TestArray<int> testArray1;
TestArray<int, 25> testArray2;

TestArray<int>::Iterator itr1;
TestArray<int, 25>::Iterator itr2;

itr1 = testArray1.Begin();

for (itr1 = testArray1.Begin(); itr1 != testArray1.End(); itr1.Next())
{
itr1.Get() = itr1.Index;
}

testArray2.Copy(testArray1, 0, 10);

for (itr2 = testArray2.Begin(); itr2 != testArray2.End(); itr2.Next())
{
std::cout << itr2.Get() << std::endl;
}

return 0;
}

这是一个 IDEONE 链接:http://ideone.com/1XKwD

当使用 gcc-4.3.4 编译时,我得到以下信息。

prog.cpp: In member function ‘void TestArray<T, N>::Copy(const TestArray<T, _N>&, int, int) [with unsigned int _N = 10u, T = int, unsigned int N = 25u]’:
prog.cpp:82: instantiated from here
prog.cpp:63: error: passing ‘const TestArray<int, 10u>’ as ‘this’ argument of ‘T& TestArray<T, N>::operator[](int) [with T = int, unsigned int N = 10u]’ discards qualifiers

当使用 VS2010 编译时,我得到以下信息。

1>------ Build started: Project: testunholytemplatemess, Configuration: Debug Win32 ------
1> main.cpp
1>c:\users\james\documents\testproj\testunholytemplatemess\testunholytemplatemess\main.cpp(63): error C2678: binary '[' : no operator found which takes a left-hand operand of type 'const TestArray<T>' (or there is no acceptable conversion)
1> with
1> [
1> T=int
1> ]
1> c:\users\james\documents\testproj\testunholytemplatemess\testunholytemplatemess\main.cpp(44): could be 'int &TestArray<T>::operator [](const int)'
1> with
1> [
1> T=int
1> ]
1> while trying to match the argument list '(const TestArray<T>, int)'
1> with
1> [
1> T=int
1> ]
1> c:\users\james\documents\testproj\testunholytemplatemess\testunholytemplatemess\main.cpp(82) : see reference to function template instantiation 'void TestArray<T,N>::Copy<10>(const TestArray<T> &,int,int)' being compiled
1> with
1> [
1> T=int,
1> N=25
1> ]

也许我太笨了,但我无法解释其中任何一个实际上试图告诉我的内容(对模板来说仍然有些陌生)。我也不明白为什么 operator [] 方法应该真正关心 N,或者我正在调用 operator []具有不同 N 值的容器。如果将 _other[i] 更改为 _other.Local[i],它可以正常工作。

有人有什么建议吗?

最佳答案

您必须为 []-operator 重载两个版本,一个 const 版本和一个非 const 版本:

T & operator [] (size_t _index) { return Local[_index]; }
const T & operator [] (size_t _index) const { return Local[_index]; }

您的常量 Copy 函数只允许使用第二个常量版本!

关于c++ - 具有多个模板参数的模板容器与具有不同模板参数的其他模板容器交互,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6902513/

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