CodePudding
Home
front end
Back-end
Net
Software design
Enterprise
Blockchain
Mobile
Software engineering
database
OS
other
Tags
>
shared-ptr
08-31
Net
Make struct object thread safe
08-31
Enterprise
What mechanism ensures that std::shared_ptr control block is thread-safe?
08-26
Enterprise
State of underlying resource when a shared_ptr is created from the raw pointer?
08-24
Blockchain
Why must the lock() function be used with a std::weak_ptr to safely extract the std::shared_ptr?
08-21
front end
Why can't use a inside pointer to initialize two difference shared_ptr?
08-20
Mobile
How does a shared_ptr handle copy to a pure virtual base class?
08-19
Blockchain
How would one specify a custom deleter for a shared_ptr constructed with an aliasing constructor?
08-18
Back-end
Should you use std::unique_ptr alongside std::function?
08-18
Software design
Initializing a member with type std::shared_ptr<B> of a class A with a pointer to class B in a
08-17
Software engineering
Is shared pointer thread-safety zero-cost?
08-16
Software engineering
How to pass c function/lambda as none-type parameter to a typedef/using template?
08-05
Software design
Pointing from a shared_ptr to a list yields memory error
08-03
OS
Why does the impl of shared_ptr ref count hold a pointer to the actual pointed type?
07-31
OS
How to prove c 11 make_shared() can keep shared_ptr's control block alive even after its dtor?
07-26
Software engineering
Why is the counter in std::shared_ptr atomic?
07-19
Mobile
Passing shared_ptr through 2 layers of methods?
07-14
Mobile
shared_ptr CUDA cudaStream_t
07-11
Net
Why std::shared_ptr control block need to hold a pointer to managed object with its correct type
07-09
database
static shared_ptr not keeping value across function calls
07-04
Back-end
Return Base class shared pointer using derived class C
06-19
Net
Is shared_ptr::unique() indicative that only one thread owns it?
06-13
OS
Thread-safety of reference count in std::shared_ptr
06-11
Software design
Question about the usage of shared_from_this() in practice
06-10
OS
Force the users to create an new instance by call a method which returns a shared_ptr of the class i
06-02
database
Is alias construction of shared_ptr from void safe?
06-02
Software design
store shared_ptr to container with base class
05-21
OS
Question about the thread-safety of using shared_ptr
05-20
Enterprise
binary search tree by smart pointers
05-16
database
Add a Child to its Parent from the constructor
05-16
Back-end
using shared_ptr of a type of Class A as a member variable of class B
05-15
OS
Question about operator==( const std::shared_ptr& lhs, const std::shared_ptr& rhs )
05-11
Software engineering
No match for ‘boost::shared_ptr::operator=’
05-09
front end
How to assign base class shared_ptr object to child class shared_ptr object
04-28
Blockchain
Capture shared_ptr in lambda
04-22
Back-end
Visitor Pattern and std::shared_ptr
04-15
front end
Why does a null but non-empty std::shared_ptr fail an if() statement?
04-13
Enterprise
C rvalue shared_ptr and rvalue weak_ptr
04-11
Software engineering
incomplete types with shared_ptr and unique_ptr
04-11
Enterprise
Vector of shared pointers to templated classes
03-29
Software design
Woes with std::shared_ptr<T>.use_counter()
70
1
2
Next
Last
Links:
CodePudding