Feedback

C++ - Verwendung von boost::shared_ptr

Veröffentlicht von am 3/18/2008
(1 Bewertungen)
Zeigt die Verwendung von boost::shared_ptr
#include <iostream>
#include <boost/shared_ptr.hpp>
using namespace std;

class Foo
{
public:
	Foo()
	{
		cout<<"foo ctor"<<endl;
	}

	virtual ~Foo()
	{
		cout<<"foo dtor"<<endl;
	}
};

int main(int argc, char *argv[]) 
{	
	{
		boost::shared_ptr<Foo> t(new Foo());
	}

	system("pause");
	return 0;
}
Abgelegt unter boost::shared_ptr.

1 Kommentare zum Snippet

Rainer Schuster schrieb am 4/1/2008:
und wozu ist das gut ;-) weiß ich natürlich, aber für anfänger.
 

Logge dich ein, um hier zu kommentieren!