std::experimental::shared_ptr::get

From cppreference.com
 
 
Technical specifications
Filesystem library (filesystem TS)
Library fundamentals (library fundamentals TS)
Library fundamentals 2 (library fundamentals 2 TS)
Extensions for parallelism (parallelism TS)
Concepts (concepts TS)
Extensions for concurrency (concurrency TS)
Special mathematical functions (special math TR)
 
 
 
element_type* get() const;
(library fundamentals TS)

Returns the stored pointer.

Contents

[edit] Parameters

(none)

[edit] Return value

The stored pointer.

[edit] Exceptions

noexcept specification:  
noexcept
  

[edit] Notes

A shared_ptr may share ownership of an object while storing a pointer to another object. get() returns the stored pointer, not the managed pointer.

[edit] Example

[edit] See also

dereferences the stored pointer
(public member function)