gpt4 book ai didi

c++ - 模棱两可的模版,代码战士

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:49:28 24 4
gpt4 key购买 nike

以下代码在 Visual C++ 和 gcc 中编译,但在 Code Warrior 中失败

提示是对模板的调用不明确——无法在 doIt( M* ) 和 doIt( M const* ) 之间做出决定,即使在每种情况下,参数明确地是成本或非常量。令人恼火的是,如果我提供第二个模板参数,它会认为它不再有歧义。

template< typename T1, typename T2 >
T1 const* doIt( T2 const* );

template< typename T1, typename T2 >
T1* doIt( T2* );

class M {};
class N : public M {};

void f()
{
M* m1 = NULL;
M const* m2 = NULL;

doIt<N>( m1 ); // Fail
doIt<N>( m2 ); // Fail
doIt<N,M>( m1 ); // OK
doIt<N,M>( m2 ); // OK

}

这只是 Code Warrior 编译器的错误吗? (或者 gcc/Visual C++ 出错)。

最佳答案

这是 codewarrior 编译器的错误。

这是应该发生的事情:

template< typename T1, typename T2 >
T1 const* doIt( T2 const* ); // 1

template< typename T1, typename T2 >
T1* doIt( T2* ); // 2

class M {};
class N : public M {};

void f()
{
M* m1 = 0;
M const* m2 = 0;

doIt<N>( m1 );
// In the above call - the compiler does the following (post argument deduction)
// 1) create a viable set of functions { N* doIt1<N,M>(const M*) , N* doIt2<N, M>(M*) }
// 2) check the conversion sequences - M* -> M* is better than M* -> const M*
// Since doIt2 has a "better" conversion sequence (hard to beat identity) it wins - no ambiguity


doIt<N>( m2 );
// 1) Viable functions: { doIt1<N,M>(const M*), doIt2<N,const M>(const M*) }
// 2) Conversion Sequence Ranking: both do identity - so both are good
// 3) Check to see if the "mother" template of either candidate is more specialized
// - Since doIt1 theoretically matches fewer types than doIt2, it is unambiguously more specialized (the standard specifies an algorithm to check this)
// - so doIt1 wins
}

希望对您有所帮助。

关于c++ - 模棱两可的模版,代码战士,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1413588/

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