在下面的简化代码中,我尝试这样的事情:
struct A{};
struct B : public A {};
void func(A &a) {}
B b;
func(b);
通常这是有效的,但在以下更复杂的代码中它不起作用。我想我在模板上遗漏了一些东西。
为什么不可能从 to 向上DenseVector<container_reference<std::array<double, 25ull>>>
转型container_reference<std::array<double, 25ull> >&
?
#include <iostream>
#include <vector>
#include <array>
#include <cassert>
using namespace std;
template<class C>
struct container_reference
{
typedef typename C::iterator iterator;
container_reference(iterator f, iterator e) : f(f), e(e) {}
void swap(container_reference &c) { std::swap(*f, *(c.f)); /*...and more*/ }
iterator f,e;
};
template<typename C>
struct DenseVector : public C { using C::C; };
template<typename C>
struct DenseMatrixRect
{
typedef DenseVector<container_reference<C>> row_vector;
row_vector row(unsigned int i)
{
auto it = container.begin() + i * width;
return row_vector(it, it + width);
}
C container;
unsigned int width;
};
int main()
{
DenseMatrixRect<std::array<double, 25>> m; m.width = 5;
m.row(0).swap(m.row(1));
return 0;
}