命名空间
变体
操作

std::is_within_lifetime

来自 cppreference.com
< cpp‎ | types
 
 
实用程序库
语言支持
类型支持 (基本类型,RTTI)
库特性测试宏 (C++20)
动态内存管理
程序实用程序
协程支持 (C++20)
可变参数函数
is_within_lifetime
(C++26)
调试支持
(C++26)
三方比较
(C++20)
(C++20)(C++20)(C++20)
(C++20)(C++20)(C++20)
通用实用程序
日期和时间
函数对象
格式化库 (C++20)
(C++11)
关系运算符 (C++20 中已弃用)
整数比较函数
(C++20)(C++20)(C++20)   
(C++20)
交换类型操作
(C++14)
(C++11)
(C++11)
(C++11)
(C++17)
通用词汇类型
(C++11)
(C++17)
(C++17)
(C++17)
(C++11)
(C++17)
(C++23)
基本字符串转换
(C++17)
(C++17)

 
定义在头文件 <type_traits>
template< class T >
consteval bool is_within_lifetime( const T* ptr ) noexcept;
(自 C++26 起)

确定指针 ptr 是否指向位于其 生命周期 内的对象。

在将表达式 E 作为核心常量表达式进行求值期间,除非 ptr 指向一个对象

内容

[编辑] 参数

p - 要检测的指针

[编辑] 返回值

true 如果指针 ptr 指向位于其生命周期内的一个对象;否则为 false

[编辑] 注释

特性测试 Std 特性
__cpp_lib_is_within_lifetime 202306L (C++26) 检查联合体替代项是否处于活动状态

[编辑] 示例

std::is_within_lifetime 可用于检查联合体成员是否处于活动状态

#include <type_traits>
 
// an optional boolean type occupying only one byte,
// assuming sizeof(bool) == sizeof(char)
struct optional_bool
{
    union { bool b; char c; };
 
    // assuming the value representations for true and false
    // are distinct from the value representation for 2
    constexpr optional_bool() : c(2) {}
    constexpr optional_bool(bool b) : b(b) {}
 
    constexpr auto has_value() const -> bool
    {
        if consteval
        {
            return std::is_within_lifetime(&b); // during constant evaluation,
                                                // cannot read from c
        }
        else
        {
            return c != 2; // during runtime, must read from c
        }
    }
 
    constexpr auto operator*() -> bool&
    {
        return b;
    }
};
 
int main()
{
    constexpr optional_bool disengaged;
    constexpr optional_bool engaged(true);
 
    static_assert(!disengaged.has_value());
    static_assert(engaged.has_value());
    static_assert(*engaged);
}