forked from s444409/POB_2019
20 lines
324 B
C++
20 lines
324 B
C++
|
#include <iostream>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
template <typename type>
|
||
|
class Array {
|
||
|
private:
|
||
|
type* ptrs;
|
||
|
Array(){}
|
||
|
~Array(){}
|
||
|
public:
|
||
|
Array& operator new [](){
|
||
|
Array();
|
||
|
return *this;
|
||
|
}
|
||
|
void operator delete [](){
|
||
|
~Array();
|
||
|
}
|
||
|
|
||
|
}
|