今天写一个测试程序的时候,遇到一个新的问题,代码示例如下,在 G++ 4.x 下编译出错:
template <typename Compare>
class test_base
{
protected:
Compare comp;
};
template <typename Iter, typename Compare>
class test: public test_base<Compare>
{
public:
void foo(Iter first, Iter last)
{
std::sort(first, last, comp); // 编译错误: comp 不可见
}
};
|
最后解决的办法是在 test 里加一句 using test_base
::comp;
这个就很奇怪了。
阅读(1547) | 评论(0) | 转发(0) |