3

我有一个像这样的嵌套和继承结构。

template <typename U, typename T, typename _Prd = equal_to<T> >
class Octree
{
...
private :
    BBox<T,3,_Prd> bounds ;

    void SplitNode() ;
    virtual bool isSplit () ;
...
};


template <typename U, typename T, typename _Prd = equal_to<T> >
class Hull
{
    ...
    //nest the octree class here

    class OcHull: public Octree<U, T, _Prd>
    {
        bool isSplit () ;  
    };

    OcHull * GetOcHull() const ;

private:

    OcHull * hullstructure ;

};

当我想访问 OcHull 中的 bounds 变量时,编译器看不到它有这个变量。

template <typename U, typename T, typename _Prd>
bool Hull<U,T,_Prd>::OcHull::isSplit()
{
    assert(typeid(double) == typeid(T)) ;
    // for each possible view of currect cell

    for (size_t i = 0 ; i < camera_array.size() ; ++i)
    {
        //project centre of the cell

        // bounds is not detected. bound is meant to be inherited from BBox<T,3,_Prd> bounds ; above

        Vec<double,2> projectedP = camera_array[i].projectToCamPlane(bounds.centre) ; 

        ...


    }
}

错误是

Hull.hpp:84: error: ‘bounds’ was not declared in this scope

你能告诉我为什么它看不到边界吗?

4

2 回答 2

4

你需要说this->boundsOctree<U, T, _Prd>::bounds。在 C++ 中,当一个类模板继承自另一个类模板时,模板基类不会在第一次编译过程中实例化,因此必须使用显式限定符访问继承的成员。

有关更详细的解释,请参阅此答案。

于 2012-12-20T00:21:24.687 回答
3

非限定名称查找考虑依赖于模板参数的基类。

您正在使用不合格的名称bounds。并且基类Octree<U, T, _Prd>依赖于模板参数。因此,编译器不考虑基类的内容,因此bounds找不到。

您可以通过多种方式解决它。

  1. 引用时使用限定名称bounds

    Octree<U, T, _Prd>::bounds
    
  2. bounds通过访问this->

    this->bounds
    
  3. 向派生类添加using声明bounds

    class OcHull: public Octree<U, T, _Prd>
    {    
      using Octree<U, T, _Prd>::bounds;
      ...
    
于 2012-12-20T00:24:02.657 回答