cpp-exercises/auto_ptr.cpp

20 lines
396 B
C++
Raw Normal View History

2014-04-13 08:38:06 +02:00
#include <cassert>
#include <iostream>
#include <memory>
int main() {
int *i = new int;
std::auto_ptr<int> x(i);
std::auto_ptr<int> y;
/* Note: auto_ptr is deprecated. */
y = x;
std::cout << x.get() << std::endl; // Print NULL
assert(x.get() == NULL);
std::cout << y.get() << std::endl; // Print non-NULL address i
assert(y.get() != NULL);
return 0;
}