2018-03-27 08:04:47 +00:00
# nameof() c++11
2018-03-17 04:31:59 +00:00
2018-03-27 08:04:47 +00:00
C++ alternative to [nameof ](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/nameof ) operator.
2018-03-27 09:03:12 +00:00
Linux/OSX | Windows
-----------|---------
[![Build Status ](https://travis-ci.org/Terik23/nameof.svg?branch=master )](https://travis-ci.org/Terik23/nameof)|[![Build status](https://ci.appveyor.com/api/projects/status/4tyl8lee10ckw10k/branch/master?svg=true)](https://ci.appveyor.com/project/Terik23/nameof/branch/master)
2018-03-27 08:04:47 +00:00
Used to obtain the simple name of a variable, type, function.
Before, you had to use string literals to refer to definitions, which is brittle when renaming code elements because tools do not know to check these string literals.
A nameof expression has this form:
```cpp
2018-03-27 16:05:59 +00:00
std::cout < < NAMEOF ( person . address . zip_code ) < < std::endl ; / / prints " zip_code "
2018-03-27 08:04:47 +00:00
```
## Features
* Simple name
* C++11
* Header-only
* Dependency-free
* Compile-time
* Compilation check
## [Example & Key Use Cases](https://github.com/Terik23/nameof/blob/master/example/example.cpp)
* Name of a variable, function and etc
```cpp
NAMEOF(someVar) -> "someVar"
NAMEOF(someVar.SomeField) -> "SomeField"
NAMEOF(someVar.SomeMethod1()) -> "SomeMethod1()"
NAMEOF(& SomeStruct::SomeMethod2) -> "SomeMethod2"
NAMEOF_FUNCTION(someVar.SomeMethod1()) -> "SomeMethod1()"
NAMEOF_FUNCTION(& SomeStruct::SomeMethod2) -> "SomeMethod2"
NAMEOF_VAR(someVar) -> "someVar"
NAMEOF_VAR(someVar.SomeField) -> "SomeField"
```
2018-03-27 14:00:06 +00:00
* Name of enum
```cpp
NAMEOF(SomeEnum::RED) -> "RED"
NAMEOF(SomeEnum::GREEN) -> "GREEN"
```
2018-03-27 08:04:47 +00:00
* Name of type
```cpp
NAMEOF_TYPE(int[]) -> "int[]"
NAMEOF_TYPE(std::string) -> "string"
NAMEOF_TYPE(std::stringgg) -> error namespace "std" has no member "stringgg"
```
* Constexpr
2018-03-17 05:15:00 +00:00
2018-03-17 08:18:42 +00:00
```cpp
2018-03-27 08:04:47 +00:00
void f() {
int i;
constexpr auto constexpr_work_fine = NAMEOF(i); -> "i"
}
```
2018-03-17 05:15:00 +00:00
2018-03-27 08:04:47 +00:00
* Compilation check
2018-03-17 04:31:59 +00:00
2018-03-27 08:04:47 +00:00
```cpp
void f() {
int i;
NAMEOF(i); -> "i"
NAMEOF(iii); -> error identifier "iii" is undefined
NAMEOF_TYPE(std::stringgg) -> error namespace "std" has no member "stringgg"
}
```
2018-03-17 04:31:59 +00:00
2018-03-27 08:04:47 +00:00
* Validate parameters
```cpp
void f(char* s) {
if (s == nullptr)
throw std::invalid_argument(NAMEOF(s));
}
```
2018-03-17 04:31:59 +00:00
2018-03-27 14:00:06 +00:00
* Serialization, for example json:
```cpp
void to_json(json& j, const person& p) {
j = json{{NAMEOF(p.name), p.name},
{NAMEOF(p.address), p.address},
{NAMEOF(p.age), p.age}};
}
void from_json(const json& j, person& p) {
p.name = j.at(NAMEOF(p.name));
p.address = j.at(NAMEOF(p.address));
p.age = j.at(NAMEOF(p.age));
}
```
2018-03-27 08:04:47 +00:00
* Logging
2018-03-17 04:31:59 +00:00
2018-03-27 08:04:47 +00:00
```cpp
void f() {
Log(NAMEOF(f), " method entry");
2018-03-17 04:31:59 +00:00
}
```
2018-03-27 08:04:47 +00:00
## Remarks
If you need to get the fully-qualified name, you can use the NAMEOF_FULL(). For example:
```cpp
NAMEOF_FULL(someVar.SomeField) -> "someVar.SomeField"
NAMEOF_FULL(& SomeStruct::SomeMethod2) -> "& SomeStruct::SomeMethod2"
NAMEOF_TYPE_FULL(std::string) -> "std::string"
```
## License MIT