public member function
<memory>

std::auto_ptr::get

X* get() const throw();
获取指针
返回指向所指对象的指针(如果存在),否则返回零。auto_ptr指向所指对象的指针,如果对象不指向任何对象,则返回零值。

参数



返回值

指向所指对象的指针auto_ptr对象。如果对象不指向任何对象,则返回零值。
如果auto_ptr对象不指向任何对象,则返回零值。
Xauto_ptr's 模板参数(即,指向的类型)。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
// auto_ptr::get example
#include <iostream>
#include <memory>

int main () {
  std::auto_ptr<int> p (new int);

  *p.get() = 100;

  std::cout << "p points to " << *p.get() << '\n';

  return 0;
}

输出

p points to 100


另见