Sphere: Related Content
#include <iostream>
#include <memory>
using namespace std;
class MyClass {
public:
MyClass() {
cout << "constructing\n";
}
~MyClass(){
cout << "destructing\n";
}
void f() {
cout << "f()\n";
}
};
int main()
{
auto_ptr<MyClass> p1(new MyClass),p2;
auto_ptr<MyClass> p3(p1);
p2 = p1; // transfer ownership
p2->f();
p3->f();
// can assign to a normal pointer
MyClass *ptr = p2.get();
ptr->f();
return 0;
}
Singapore to field record 72-strong contingent at World Aquatics
Championships
-
Thirty of them will be debuting at the championships hosted by Singapore
this year, a figure which Singapore Aquatics president Kenneth Goh said
speaks vol...
1 hour ago
No comments:
Post a Comment