摘要: template <class T> class myMat { public: myMat(int rows_,int cols_) { rows=rows_;cols=cols_; data=new T[rows*cols]; } T& at(int r,int c) { T &p=*(data 阅读全文
posted @ 2022-06-26 16:24 凤凰_1 阅读(29) 评论(0) 推荐(0)