Native/C++

c++0x

aucd29 2013. 10. 2. 19:06
[code]
template<class T> using Vec = vector<T,My_alloc<T>>;
Vec<double> v = { 2.3, 1.2, 6.7, 4.5 };
sort(v);
for(auto p = v.begin(); p!=v.end(); ++p)
    cout << *p << endl;
[/code]

아름답도다.