C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- std::unique_ptr
- std::make_unique, std::make_unique_for_overwrite
- std::hash <std::unique_ptr>
- std::unique_ptr<T,Deleter>::operator<<
- std::swap(std::unique_ptr)
- std::unique_ptr<T,Deleter>::operator*
- std::unique_ptr<T,Deleter>::operator[]
- operator==,!=,<,<=,>,>=,<=>(std::unique_ptr)
- std::unique_ptr<T,Deleter>::get
- std::unique_ptr<T,Deleter>::get_deleter
- std::unique_ptr<T,Deleter>::operator bool
- std::unique_ptr<T,Deleter>::reset
- std::unique_ptr<T,Deleter>::swap
- std::unique_ptr<T,Deleter>::operator=
- std::unique_ptr<T,Deleter>::release
- std::unique_ptr<T,Deleter>::unique_ptr
- std::unique_ptr<T,Deleter>::~unique_ptr
- std::addressof
- std::allocator_traits
- std::default_delete
- std::allocator_arg_t
- std::allocator_arg
- std::weak_ptr
- std::enable_shared_from_this
- std::bad_weak_ptr
- std::scoped_allocator_adaptor
- std::auto_ptr
- std::destroy_at
- std::destroy
- std::destroy_n
- std::uninitialized_move
- std::uninitialized_value_construct
- std::owner_less
- std::shared_ptr
- std::to_address
- std::assume_aligned
- std::make_obj_using_allocator
- C 内存管理库
- 低层内存管理
- std::pmr::memory_resource
- std::allocator
- std::pointer_traits
- std::uses_allocator
- std::uses_allocator_construction_args
- std::uninitialized_construct_using_allocator
- std::pmr::polymorphic_allocator
- std::pmr::get_default_resource
- std::pmr::set_default_resource
- std::pmr::new_delete_resource
- std::pmr::null_memory_resource
- std::pmr::synchronized_pool_resource
- std::pmr::unsynchronized_pool_resource
- std::pmr::monotonic_buffer_resource
- std::pmr::pool_options
- std::raw_storage_iterator
- std::get_temporary_buffer
- std::return_temporary_buffer
- std::uninitialized_copy
- std::uninitialized_fill
- std::uninitialized_default_construct
- std::uninitialized_copy_n
- std::uninitialized_fill_n
- std::uninitialized_move_n
- std::uninitialized_default_construct_n
- std::uninitialized_value_construct_n
- std::construct_at
- std::align
- 注释
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
位置:首页 > C++ 参考手册 >动态内存管理 >std::unique_ptr > operator==,!=,<,<=,>,>=,<=>(std::unique_ptr)
operator==,!=,<,<=,>,>=,<=>(std::unique_ptr)
requires std::three_way_comparable_with<
typename unique_ptr<T1, D1>::pointer,
typename unique_ptr<T2, D2>::pointer>
std::compare_three_way_result_t<typename unique_ptr<T1, D1>::pointer,
typename unique_ptr<T2, D2>::pointer>
template <class T, class D>
bool operator==(const unique_ptr<T, D>& x, std::nullptr_t) noexcept;
bool operator==(const unique_ptr<T, D>& x, std::nullptr_t) noexcept;
template <class T, class D>
bool operator==(std::nullptr_t, const unique_ptr<T, D>& x) noexcept;
bool operator==(std::nullptr_t, const unique_ptr<T, D>& x) noexcept;
(C++20 前)
template <class T, class D>
bool operator!=(const unique_ptr<T, D>& x, std::nullptr_t) noexcept;
bool operator!=(const unique_ptr<T, D>& x, std::nullptr_t) noexcept;
(C++20 前)
template <class T, class D>
bool operator!=(std::nullptr_t, const unique_ptr<T, D>& x) noexcept;
bool operator!=(std::nullptr_t, const unique_ptr<T, D>& x) noexcept;
(C++20 前)
template <class T, class D>
bool operator<(const unique_ptr<T, D>& x, std::nullptr_t);
bool operator<(const unique_ptr<T, D>& x, std::nullptr_t);
template <class T, class D>
bool operator<(std::nullptr_t, const unique_ptr<T, D>& y);
bool operator<(std::nullptr_t, const unique_ptr<T, D>& y);
template <class T, class D>
bool operator<=(const unique_ptr<T, D>& x, std::nullptr_t);
bool operator<=(const unique_ptr<T, D>& x, std::nullptr_t);
template <class T, class D>
bool operator<=(std::nullptr_t, const unique_ptr<T, D>& y);
bool operator<=(std::nullptr_t, const unique_ptr<T, D>& y);
template <class T, class D>
bool operator>(const unique_ptr<T, D>& x, std::nullptr_t);
bool operator>(const unique_ptr<T, D>& x, std::nullptr_t);
template <class T, class D>
bool operator>(std::nullptr_t, const unique_ptr<T, D>& y);
bool operator>(std::nullptr_t, const unique_ptr<T, D>& y);
template <class T, class D>
bool operator>=(const unique_ptr<T, D>& x, std::nullptr_t);
bool operator>=(const unique_ptr<T, D>& x, std::nullptr_t);
template <class T, class D>
bool operator>=(std::nullptr_t, const unique_ptr<T, D>& y);
bool operator>=(std::nullptr_t, const unique_ptr<T, D>& y);
template<class T, class D>
requires std::three_way_comparable_with<
typename unique_ptr<T, D>::pointer,
std::nullptr_t>
std::compare_three_way_result_t<typename unique_ptr<T, D>::pointer,
std::nullptr_t>
比较二个 unique_ptr
或 unique_ptr
与 nullptr 的指针值。
1-7) 比较二个
unique_ptr
。8-20) 比较
unique_ptr
与 nullptr 。参数
x, y | - | 要比较的 unique_ptr
|
返回值
1) x.get() == y.get()
2) x.get() != y.get()
3) std::less<CT>()(x.get(), y.get()) ,其中
CT
是 std::common_type<unique_ptr<T1, D1>::pointer, unique_ptr<T2, D2>::pointer>::type4) !(y < x)
5) y < x
6) !(x < y)
7) std::compare_three_way{}(x.get(), y.get())
8-9) !x
10-11) (bool)x
12) std::less<unique_ptr<T,D>::pointer>()(x.get(), nullptr)
13) std::less<unique_ptr<T,D>::pointer>()(nullptr, y.get())
14) !(nullptr < x)
15) !(y < nullptr)
16) nullptr < x
17) y < nullptr
18) !(x < nullptr)
19) !(nullptr < y)
20) std::compare_three_way{}(x.get(), nullptr)
示例
运行此代码
#include <iostream> #include <memory> int main() { std::unique_ptr<int> p1(new int(42)); std::unique_ptr<int> p2(new int(42)); std::cout << "p1 == p1: " << (p1 == p1) << '\n'; // p1 与 p2 指向不同内存位置,故 p1 != p2 std::cout << "p1 == p2: " << (p1 == p2) << '\n'; }
输出:
p1 == p1: 1 p1 == p2: 0
参阅
返回指向被管理对象的指针 (公开成员函数) |