标准库头文件 <cstddef>
来自 cppreference.com
此头文件最初在 C 标准库中名为 <stddef.h>.
此头文件是 实用程序 库的一部分。
宏 | ||
实现定义的空指针常量 (宏常量) | ||
从 标准布局 类型的开头到指定成员的字节偏移量 (函数宏) | ||
类型 | ||
sizeof 运算符返回的无符号整型 (typedef) | ||
两个指针相减时返回的有符号整数类型 (typedef) | ||
(C++11) |
空指针字面量 nullptr 的类型 (typedef) | |
(C++11) |
对齐要求与任何其他标量类型一样大的平凡类型 (typedef) | |
(C++17) |
字节类型 (enum) | |
函数 | ||
(C++17) |
将 std::byte 转换为整数 (函数模板) |
[编辑] 概要
namespace std { using ptrdiff_t = /* see description */; using size_t = /* see description */; using max_align_t = /* see description */; using nullptr_t = decltype(nullptr); enum class byte : unsigned char {}; // byte type operations template<class IntType> constexpr byte& operator<<=(byte& b, IntType shift) noexcept; template<class IntType> constexpr byte operator<<(byte b, IntType shift) noexcept; template<class IntType> constexpr byte& operator>>=(byte& b, IntType shift) noexcept; template<class IntType> constexpr byte operator>>(byte b, IntType shift) noexcept; constexpr byte& operator|=(byte& l, byte r) noexcept; constexpr byte operator|(byte l, byte r) noexcept; constexpr byte& operator&=(byte& l, byte r) noexcept; constexpr byte operator&(byte l, byte r) noexcept; constexpr byte& operator^=(byte& l, byte r) noexcept; constexpr byte operator^(byte l, byte r) noexcept; constexpr byte operator~(byte b) noexcept; template<class IntType> constexpr IntType to_integer(byte b) noexcept; } #define NULL /* see description */ #define offsetof(P, D) /* see description */