以下のソースを書きました
#include <iostream>
using namespace std;
template <class T>
class AAA
{
public:
void f() { cout << T() << " "; }
};
int main ( void )
{
AAA<int*> a;
AAA<int> b;
a.f(); /// in this case, T() == NULL??
b.f();
return 0;
}
コンソール印刷は 00000000 0 です (Visual Studio 2010 の場合)。
T が int* の場合、T() == NULL? そしてそれは常に真実ですか?