#c++##c++引用#template<class T>class B{ public: B() { const int a = 1; const T b = a; }};B<int&amp;> v;报错:error: binding reference of type 'int&amp;' to 'const int' discards qualifiers | const T b = a;为什么呢