Pertimbangkan program berikut.
#include <iostream>
template <typename T>
void f( void ( *fn )( T ) )
{
fn( 42 );
}
void g( int x )
{
std::cout << "g( " << x << " );\n";
}
int main()
{
f( g );
}
Program berhasil dikompilasi dan hasilnya adalah
g( 42 );
Sekarang mari kita ganti nama fungsi non-templat g
menjadi f
.
#include <iostream>
template <typename T>
void f( void ( *fn )( T ) )
{
fn( 42 );
}
void f( int x )
{
std::cout << "f( " << x << " );\n";
}
int main()
{
f( f );
}
Sekarang program tidak dikompilasi oleh gcc HEAD 10.0.0 20200 dan clang HEAD 10.0.0 tetapi berhasil dikompilasi oleh Visual C ++ 2019 ..
Sebagai contoh, compiler gcc mengeluarkan set pesan berikut.
prog.cc: In function 'int main()':
prog.cc:22:10: error: no matching function for call to 'f(<unresolved overloaded function type>)'
22 | f( f );
| ^
prog.cc:4:6: note: candidate: 'template<class T> void f(void (*)(T))'
4 | void f( void ( *fn )( T ) )
| ^
prog.cc:4:6: note: template argument deduction/substitution failed:
prog.cc:22:10: note: couldn't deduce template parameter 'T'
22 | f( f );
| ^
prog.cc:14:6: note: candidate: 'void f(int)'
14 | void f( int x )
| ^
prog.cc:14:13: note: no known conversion for argument 1 from '<unresolved overloaded function type>' to 'int'
14 | void f( int x )
| ~~~~^
Maka muncul pertanyaan: haruskah kode dikompilasi dan apa alasannya kode tersebut tidak dikompilasi oleh gcc dan dentang?
g
(alih-alih &g
) ke templat fungsi menyebabkan peluruhan tipe (referensi nilai fungsi meluruh ke penunjuk ke fungsi: void(&)(T)
=> void(*)(T)
). Konversi tersirat ini terjadi karena tidak ada f
kelebihan lainnya dengan kecocokan yang lebih baik. Pada contoh kedua, ada ambiguitas yang f
ingin Anda panggil karena ... tidak tahu yang mana f
argumennya.