public member function
<memory>

std::unique_ptr::operator bool

explicit operator bool() const noexcept;
检查是否非空
返回 unique_ptr 当前是否管理着一个对象(即 unique_ptr 是否非空)。

函数返回true存储的指针 不是空指针时,返回 true,这与
1
get()!=

参数



返回值

false如果 unique_ptr 为空,则返回 false。
true否则。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// example of unique_ptr::operator bool
#include <iostream>
#include <memory>


int main () {
  std::unique_ptr<int> foo;
  std::unique_ptr<int> bar (new int(12));

  if (foo) std::cout << "foo points to " << *foo << '\n';
  else std::cout << "foo is empty\n";

  if (bar) std::cout << "bar points to " << *bar << '\n';
  else std::cout << "bar is empty\n";

  return 0;
}

输出
foo is empty
bar points to 12


另见