랭킹으로 돌아가기

Neargye/nameof

C++

Nameof operator for modern C++, simply obtain the name of a variable, type, function, macro, and enum

cpluspluscplusplus-17c-plus-plusc-plus-plus-17cppcpp17nameofnameof-operatorenum-to-stringserializationreflectionmetaprogramming
스타 성장
스타
2.3k
포크
127
주간 성장
이슈
0
1k2k
2018년 3월2020년 12월2023년 10월2026년 7월
README

Github releases Conan package Vcpkg package License Compiler explorer Stand With Ukraine

Nameof C++

Header-only C++17 library provides nameof macros and functions to simply obtain the name of a variable, type, function, macro, and enum.

If you like this project, please consider donating to one of the funds that help victims of the war in Ukraine: https://u24.gov.ua.

Documentation

Features & Examples

  • Nameof

    // Name of variable.
    NAMEOF(somevar) -> "somevar"
    
    // Name of member variable.
    NAMEOF(person.address.zip_code) -> "zip_code"
    
    // Name of function.
    NAMEOF(foo<int, float>()) -> "foo"
    
    // Name of member function.
    NAMEOF(somevar.some_method()) -> "some_method"
    NAMEOF(somevar.some_method<int>()) -> "some_method"
    
    // Name of macro.
    NAMEOF(__LINE__) -> "__LINE__"
    
    // Obtains full name of variable, function, macro.
    NAMEOF_FULL(somevar.some_method<int>()) -> "some_method<int>"
    
    // Obtains raw name of variable, function, macro.
    NAMEOF_RAW(somevar.some_method<int>()) -> "somevar.some_method<int>()"
    
  • Nameof enum

    enum class Color { RED = 1, BLUE = 2, GREEN = 4 };
    
    auto color = Color::RED;
    // Name of enum variable.
    NAMEOF_ENUM(color) -> "RED"
    nameof::nameof_enum(color) -> "RED"
    
    // Static storage enum variable to string.
    // This version is much lighter on the compile times and is not restricted to the enum_range limitation.
    NAMEOF_ENUM_CONST(Color::GREEN) -> "GREEN"
    nameof::nameof_enum<Color::GREEN>() -> "GREEN"
    
    enum AnimalFlags { HasClaws = 1, CanFly = 2, EatsFish = 4 };
    
    // Enum flags variable to string.
    auto flag = static_cast<AnimalFlags>(CanFly | EatsFish);
    NAMEOF_ENUM_FLAG(flag) -> "CanFly|EatsFish"
    nameof::nameof_enum_flag(flag) -> "CanFly|EatsFish"
    
    // Obtains name of enum variable or default value if enum variable out of range.
    NAMEOF_ENUM_OR(Color::GREEN, "none") -> "GREEN"
    NAMEOF_ENUM_OR((Color)0, "none") -> "none"
    
  • Nameof type

    const my::detail::SomeClass<int>& var_ref = var;
    // Name of variable type.
    NAMEOF_TYPE_EXPR(var_ref) -> "my::detail::SomeClass<int>"
    nameof::nameof_type<decltype(var_ref)>() -> "my::detail::SomeClass<int>"
    NAMEOF_FULL_TYPE_EXPR(var_ref) -> "const my::detail::SomeClass<int>&"
    nameof::nameof_full_type<decltype(var_ref)>() -> "const my::detail::SomeClass<int>&"
    NAMEOF_SHORT_TYPE_EXPR(var_ref) -> "SomeClass"
    nameof::nameof_short_type<decltype(var_ref)>() -> "SomeClass"
    
    using T = const my::detail::SomeClass<int>&;
    // Name of type.
    NAMEOF_TYPE(T) ->"my::detail::SomeClass<int>"
    nameof::nameof_type<T>() -> "my::detail::SomeClass<int>"
    NAMEOF_FULL_TYPE(T) -> "const my::detail::SomeClass<int>&"
    nameof::nameof_full_type<T>() -> "const my::detail::SomeClass<int>&"
    NAMEOF_SHORT_TYPE(T) -> "SomeClass"
    nameof::nameof_short_type<T>() -> "SomeClass"
    
    my::detail::Base* ptr = new my::detail::Derived();
    // Name of type, using rtti.
    NAMEOF_TYPE_RTTI(*ptr) -> "my::detail::Derived"
    NAMEOF_FULL_TYPE_RTTI(*ptr) -> "my::detail::Derived&"
    NAMEOF_SHORT_TYPE_RTTI(*ptr) -> "Derived"
    
    struct A {
      int this_is_the_name;
    };
    // Obtains name of member.
    NAMEOF_MEMBER(&A::this_is_the_name) -> "this_is_the_name"
    nameof::nameof_member<&A::this_is_the_name>() -> "this_is_the_name"
    
    int someglobalvariable = 0;
    const int someglobalconstvariable = 42;
    // Obtains name of a function, a global or class static variable.
    NAMEOF_POINTER(&someglobalconstvariable) == "someglobalconstvariable"
    nameof::nameof_pointer<&someglobalconstvariable>() == "someglobalconstvariable"
    
    constexpr auto global_ptr = &someglobalvariable;
    NAMEOF_POINTER(global_ptr) == "someglobalvariable"
    nameof::nameof_pointer<global_ptr>() == "someglobalvariable"
    

Remarks

Integration

You should add required file nameof.hpp.

If you are using vcpkg on your project for external dependencies, then you can use the nameof package.

If you are using Conan to manage your dependencies, merely add nameof/x.y.z to your conan's requires, where x.y.z is the release version you want to use.

Archlinux users can install nameof by package manager AUR, using the following command: yay -S nameof.

Alternatively, you can use something like CPM which is based on CMake's Fetch_Content module.

CPMAddPackage(
    NAME nameof
    GITHUB_REPOSITORY Neargye/nameof
    GIT_TAG x.y.z # Where `x.y.z` is the release version you want to use.
)

Compiler compatibility

Check in the reference for each features.

Licensed under the MIT License

관련 저장소
ocornut/imgui

Dear ImGui: Bloat-free Graphical User interface for C++ with minimal dependencies

C++MIT Licenseguigamedev
74.9k11.9k
Light-City/CPlusPlusThings

C++那些事

C++cpluspluscpp
light-city.github.io/stories_things/
43.3k8.8k
microsoft/vcpkg

C++ Library Manager for Windows, Linux, and MacOS

CMakeMIT Licensevcpkgvisual-studio
27.3k7.6k
glideapps/quicktype

Generate types and converters from JSON, Schema, and GraphQL

TypeScriptnpmApache License 2.0jsontypescript
app.quicktype.io
13.8k1.2k
apache/thrift

Apache Thrift

C++Apache License 2.0dthrift
10.9k4.1k
conan-io/conan

Conan - The open-source C and C++ package manager

PythonPyPIMIT Licensepackage-managercpp
conan.io
9.5k1.1k
chakra-core/ChakraCore

ChakraCore is an open source Javascript engine with a C API.

JavaScriptnpmMIT Licensechakracorejavascript-engine
9.3k1.2k
LibreSprite/LibreSprite

Animated sprite editor & pixel art tool -- Fork of the last GPLv2 commit of Aseprite

C++GNU General Public License v2.0pixel-artcplusplus
libresprite.github.io
8.1k518
BoomingTech/Piccolo

Piccolo (formerly Pilot) – mini game engine for games104

C++MIT Licensecppgame-engine
6.7k2k
leejet/stable-diffusion.cpp

Diffusion model(SD,Flux,Wan,Qwen Image,Z-Image,...) inference in pure C/C++

C++MIT Licenseaicplusplus
6.6k706
Neargye/magic_enum

Static reflection for enums (to string, from string, iteration) for modern C++, work with any enum type without any macro or boilerplate code

C++MIT Licensecpluspluscplusplus-17
6.1k561
apache/mesos

Apache Mesos

C++Apache License 2.0cplusplusmesos
5.4k1.7k