shared_ptr에 대한 질문

telepathy070의 이미지

제 소스를 봐주세요.

long long extern_raw_cstring_address;
static std::unordered_map<void *, int> ref_map;  //맵
 
void first_func()
{
	CString *tmpCString = new CString("hello world");
	std::shared_ptr<CString> cr = shared_ptr<CString>(tmpCString, DebugDelete());
	//std::shared_ptr<CString> cr = make_shared<CString>(*tmpCString);
 
	CString *raw_cstring = cr.get();
	TRACE(*raw_cstring);      // --->  "hello world"로 잘 나옴
	TRACE("\r\n");
 
	extern_raw_cstring_address = (long long)(raw_cstring);   //주소를 extern에 저장
 
 
	CString *test_cstring = reinterpret_cast<CString *>(extern_raw_cstring_address);
	TRACE(*test_cstring);  //그 주소로 다시 CString을 재구성해도 데이터 정상임
	TRACE("\r\n");
 
 
        //아래는 shared_ptr이 가르키는 값을 map에 집어넣음
	auto it = ref_map.find(cr.get());
	if (it != ref_map.end())
	{
		if (int intObj = it->second)
		{
			//return TRUE;
		}
		else
		{
			ref_map.erase(it);
		}
	}
	ref_map.emplace(cr.get(), 777);  //맵에 shared_ptr 주소 대입함
}
 
void second_func()
{
	CString *test_cstring = reinterpret_cast<CString *>(extern_raw_cstring_address);
 
	TRACE(*test_cstring);
	TRACE("\r\n");
}

질문입니다.
first_func()에서 CString을 shared_ptr에 넣고 주소를 extern에 저장해두었습니다.
reference count가 0이 될것 같아서
map에 다가 shared_ptr의 주소를 집어넣었습니다.

하지만 second_func()를 불러보면 그 shared_ptr는 first함수에서 이미 삭제되고
그 주소에 쓰레기 값만 들어가있습니다.

원래 shared_ptr가 가르키는 객체의 주소를 .get()해서 다른 포인터에(저처럼 map같은 데다가) 집어넣으면 reference count가 증가하는게 아니었나요?
그래서 함수를 나가더라도 삭제가 안되야 하는것 아닌가요?

gilgil의 이미지

> 원래 shared_ptr가 가르키는 객체의 주소를 .get()해서 다른 포인터에(저처럼 map같은 데다가) 집어넣으면 reference count가 증가하는게 아니었나요?
아니오.

kukyakya의 이미지

shared_ptr 자체가 포인터이면서 레퍼런스를 카운트하는 객체입니다.

shared_ptr::get()으로 반환된 포인터는 shared_ptr 객체가 사라지면 dangling pointer가 되어 사용할 수 없습니다.

포인터 자체를 인자로 받는 legacy code를 사용하는 목적 외에는 shared_ptr::get()은 사용하지 않으시는 것이 좋습니다.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.