我有这个片段:
template<class T> class VECTOR_2D { public: T x,y; VECTOR_2D() :x(T()),y(T()) {} }
在构造函数中初始化的x和y是什么?
c++
c++ ×1