摘要: #pragma once #include<iostream> using std::cout; using std::endl; template<typename T> class Vector { public: Vector(T n) :size(n) { p = new T[n]; } V 阅读全文
posted @ 2022-12-06 22:10 要比我快乐 阅读(13) 评论(0) 推荐(0)