[C++11]_[초급][weak ptr의 사용 장면]
장면
참고 자료
std::weak_ptr
예2
#include <iostream>
#include <memory>
std::weak_ptr<int> gw;
void f()
{
if (auto spt = gw.lock()) { // Has to be copied into a shared_ptr before usage
std::cout << *spt << "
";
}
else {
std::cout << "gw is expired
";
}
}
void TestWeakPtrScope_1()
{
std::cout << "TestWeakPtrScope_1" << std::endl;
std::shared_ptr<int> sp1;
{
auto sp = std::make_shared<int>(42);
gw = sp;
f();
sp1 = gw.lock();
}
f();
}
void TestWeakPtrScope_2()
{
std::cout << "TestWeakPtrScope_2" << std::endl;
std::shared_ptr<int> sp1;
{
auto sp = std::make_shared<int>(42);
gw = sp;
f();
}
f();
}
int main()
{
TestWeakPtrScope_1();
TestWeakPtrScope_2();
}
출력:
TestWeakPtrScope_1
42
42
TestWeakPtrScope_2
42
gw is expired
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Rust의 Smart point ers는 무엇입니까?Pointer란 &에 표시된 참조 같은 것을 말합니다. 코드로 표현하면 이런 느낌이에요. 이걸 컴파일하면 이런 오류가 발생합니다... 전항의 번역 오류를 돌파할 수 있다 가까스로 Box<T> 귀속성을 표현할 수 있는...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.