ブックスのshared_ptr


// shared_ptr_Exam.cpp : Defines the entry point for the console application.
//


#include "stdafx.h"
#include <iostream>
#include <string>
using namespace std;


#include "boost/smart_ptr.hpp"
using namespace boost;


int _tmain(int argc, _TCHAR* argv[])
{
	/*
shared_ptr        ,        shared_ptrs        。          (reference counting)
              ,                0,          。                    
auto_ptr           ,              ,           
                                ,              ,
      。boost              shared_ptr,                    ,
             ,            
	*/
	shared_ptr<string> sp(new string("hello world"));


	return 0;
}