私はこれを本当に理解していません。コンパイラは最初に中かっこで囲まれたものを実行し、次にその結果を最も適切な関数に与えると思いました。ここでは、それを処理するための初期化子リストを関数に提供しているように見えます...
#include <string>
#include <vector>
using namespace std;
void func(vector<string> v) { }
void func(vector<wstring> v) { }
int main() {
func({"apple", "banana"});
}
エラー:
<stdin>: In function 'int main()':
<stdin>:11:27: error: call of overloaded 'func(<brace-enclosed initializer list>)' is ambiguous
<stdin>:11:27: note: candidates are:
<stdin>:6:6: note: void func(std::vector<std::basic_string<char> >)
<stdin>:8:6: note: void func(std::vector<std::basic_string<wchar_t> >)
func(vector<string> v)
オーバーロードが呼び出されないのはなぜですか。そうすることはできますか?