代码如下:
template <typename T>
class foo
{
public:
class bar
{
public:
bar() {}
bar(const bar &) {}
bar(int) {}
operator T *() const
{
return 0;
}
bar operator + (int)
{
return *this;
}
};
};
int main()
{
foo<int>::bar f;
size_t i = 1;
f + i;
return 0;
}
注意:外层 class foo 和 template 都不能去掉。
这个代码应该通过编译么?还是应该报operator +匹配歧义?
posted on 2010-10-15 15:01
溪流 阅读(2429)
评论(6) 编辑 收藏 引用 所属分类:
C++