생성자객체가 생성된 직후에 자동으로 호출되는 함수.생성자에서 속성을 초기화하는 등 객체를 사용할 준비를 할 수 있습니다.#include using namespace std;template // 템플릿 선언 추가class SimpleVector {public: SimpleVector() { // 생성자 currentSize = 0; currentCapacity = 10; data = new T[currentCapacity]; } ~SimpleVector() { // 소멸자 추가 (동적 메모리 해제) delete[] data; }private: int currentSize; // 현재 요소 개수 int currentC..