摘要: 1 #ifndef VECTOR_HPP 2 #define VECTOR_HPP 3 4 #include <iostream> 5 #include <stdexcept> // 用于异常处理 6 7 using namespace std; 8 9 template <typename T> 阅读全文