このコードが誤った出力を生成するのはなぜですか?
//this-type.cpp
#include <iostream>
#include <type_traits>
using namespace std;
template<typename testype>
class A
{
public:
A()
{
cout << boolalpha;
cout << is_same<decltype(*this), A<int>>::value << endl;
}
};
class B : public A<int>
{
};
int main()
{
B b;
}
出力:
$ g++ -std=c++11 this-type.cpp
$ ./a.out
false
A から B までの "*this" の型は A< int > ですね。