programming 썸네일형 리스트형 AsyncSelect모델에 대하여.. 수업 시간에 내가 직접 발표한 내용.. 하지만 내용이 영~ 허접(?) 하다아~ ppt와 doc 파일 두개.. 그리고 강사님이 주신 예제 파일~ (강사님이 주신 예제 기반으로 만들었다) 더보기 객체출력자 ostream& operator 더보기 MyVector!!! //확장배열을 만들어보자아~~ #include using namespace std; using std::cout; using std::endl; template class MyVector { T *base; int capacity; int usage; public: MyVector(int _capacity=0, T in=0); virtual ~MyVector(); void PushBack(T in); void Insert(int index, T in); void Erase(int index); T &operator[](int index); int Usage(); int Capacity(); void InitProperty(); void ExtendStorage(int _capacity); void Pus.. 더보기 이전 1 ··· 23 24 25 26 27 28 29 다음