0

そのため、 OverLoad (ダウンロード可能な svn ディレクトリへのリンク、lib はヘッダーのみ)と呼ばれる優れた lib があります。任意のタイプの関数を受け入れることができ、呼び出す関数を自動的に決定します。ブースト機能に似ていますが、より優れています。ここに 2 つのコード サンプルがあります (ブラウザーはブースト svn を表示できます) one two . そして、コンパイルされず、それらに基づいている私のコードは次のとおりです。

#include <string>

#include <boost/detail/lightweight_test.hpp>

#include <boost/overload.hpp>

using boost::overload; 

template<class out, class in>
out foo(in O )
{
    std::cout << "yes we can!";
    return out();
}

int main()
{
    //// works
    //overload<int (int ), int (std::string )> f;
    //// works
    //int (*foo1) (int ) = &foo<int, int>;
    //int (*foo2) (std::string ) = &foo<int, std::string>;
    //f.set(foo1);
    //f.set(foo2);
    // or we can use
    //// does also work
    //f.set<int (int )>(&foo<int, int>);
    //f.set<int (std::string )>(&foo<int, std::string>);
    ////

    overload<int (int ), int (std::string ), std::string (std::string) > f;
    //// but when we do this
    //f.set<int (int )>(&foo<int, int>);
    //f.set<int (std::string )>(&foo<int, std::string>);
    //f.set<int (std::string )>(&foo<std::string, std::string>);
    //// or this:
    int (*foo1) (int ) = &foo<int, int>;
    int (*foo2) (std::string ) = &foo<int, std::string>;
    std::string (*foo3) (std::string ) = &foo<std::string, std::string>;
    f.set(foo1);
    f.set(foo2);
    f.set(foo3);
    //// we get compile error

    BOOST_ASSERT( f(0) == 1 );
    BOOST_ASSERT( f("hi") == 2 ); // here we get Error  1   error C3066: there are multiple ways that an object of this type can be called with these arguments

    return boost::report_errors();
}

それで、この問題をどのように回避するのだろうか?

4

1 に答える 1

1

オーバーロードの解決では、パラメーターの型のみが考慮されます。戻り値の型は考慮されません。したがって、オーバーロードの解決中int (std::string)は、 と区別できませんstd::string(std::string)

このライブラリは C++ 言語のオーバーロード機能に依存する必要があるため、2 つの関数を区別することもできません。

于 2011-12-01T21:56:38.673 に答える