Skip to content

Latest commit

 

History

History
67 lines (52 loc) · 1.56 KB

to_underlying.md

File metadata and controls

67 lines (52 loc) · 1.56 KB

to_underlying

  • utility[meta header]
  • std[meta namespace]
  • function template[meta id-type]
  • cpp23[meta cpp]
namespace std {
  template <class T>
  constexpr underlying_type_t<T> to_underlying(T value) noexcept; // C++23
}
  • underlying_type_t[link /reference/type_traits/underlying_type.md]

概要

列挙型Tの値を基底型に変換する。

列挙型はenum class E : int { … };のようにコロンのあとに基底型を指定でき、指定しない場合の基底型はすべての列挙値を表現できる整数型となる。この関数では、列挙値を基底型に変換する。

戻り値

return static_cast<underlying_type_t<T>>(value);
  • underlying_type_t[link /reference/type_traits/underlying_type.md]

#include <iostream>
#include <utility>

enum class Color : int {
  Red   = 0xff0000,
  Green = 0x00ff00,
  Blue  = 0x0000ff,
};

void print_color_value(int color) {
  std::cout << std::hex << std::showbase << color << std::endl;
}

int main() {
  print_color_value(std::to_underlying(Color::Blue));
}
  • std::to_underlying[color ff0000]
  • std::hex[link /reference/ios/hex.md]
  • std::showbase[link /reference/ios/showbase.md]

出力

0xff

バージョン

言語

  • C++23

処理系

参照