标签: c++ compilation
我用c ++编写了一个模板类:
template <typename T> class A { T t; }
当我像这样实例化A时:
A<int> a;
然后我如何确认编译器将按照我的预期生成如下代码:
class A { int t; }
如何检查?