template <class T>
class MyVector
{
T *base;
int usage;
int capacity;
public:
void Foo();
}
template <class T>
void MyVoector<T>::Foo() //헤더파일에
{
....
}
void main()
{
MyVector<int> *mv = new myVector<int>();
mv -> Foo();
}
-------------------------------------------------
class myVector <int>
{
int * base;
......
}
class MyVector
{
T *base;
int usage;
int capacity;
public:
void Foo();
}
template <class T>
void MyVoector<T>::Foo() //헤더파일에
{
....
}
void main()
{
MyVector<int> *mv = new myVector<int>();
mv -> Foo();
}
-------------------------------------------------
class myVector <int>
{
int * base;
......
}
'programming > C++' 카테고리의 다른 글
3. Hash Function에 의해 자료를 보관 (0) | 2009.11.19 |
---|---|
2. 특정 키순으로 보관(complete) (0) | 2009.11.19 |
MyVector - 떡떡한배열2 (0) | 2009.11.18 |
떡떡한 배열(?) (0) | 2009.11.17 |
Template. (0) | 2009.11.17 |