nameof_module/example/example.cpp

95 lines
3.5 KiB
C++
Raw Normal View History

2018-03-17 03:27:47 +00:00
// MIT License
2018-03-17 03:09:49 +00:00
//
2018-03-17 03:27:47 +00:00
// Copyright(c) 2016 - 2018 Terik23
2018-03-17 03:09:49 +00:00
//
2018-03-17 03:27:47 +00:00
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files(the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions :
2018-03-17 03:09:49 +00:00
//
2018-03-17 03:27:47 +00:00
// The above copyright notice and this permission notice shall be included in
// all
// copies or substantial portions of the Software.
2018-03-17 03:09:49 +00:00
//
2018-03-17 03:27:47 +00:00
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
2018-03-17 04:31:59 +00:00
// Simple Example.
2018-03-17 04:36:39 +00:00
2018-03-17 03:27:47 +00:00
#include <iostream>
2018-03-17 04:31:59 +00:00
#include <nameof.hpp>
2018-03-17 03:27:47 +00:00
struct SomeStruct {
int SomeField;
2018-03-18 15:28:53 +00:00
void SomeMethod1() { std::cout << "No called!" << std::endl; }
int SomeMethod2() {
std::cout << "No called!" << std::endl;
return 1;
}
2018-03-17 03:27:47 +00:00
};
2018-03-18 15:28:53 +00:00
void SomeMethod3() { std::cout << "No called!" << std::endl; }
2018-03-17 09:12:59 +00:00
struct Long {
struct LL {
int LLLField;
2018-03-17 08:04:35 +00:00
};
2018-03-17 09:12:59 +00:00
LL LLField;
2018-03-17 08:04:35 +00:00
};
2018-03-17 09:53:33 +00:00
struct TestRValue {
int Field;
};
2018-03-17 03:27:47 +00:00
int someVar = 0;
int main() {
SomeStruct someVar{1};
2018-03-17 09:12:59 +00:00
Long otherVar{2};
2018-03-18 15:28:53 +00:00
int intValue{3};
2018-03-17 08:04:35 +00:00
SomeStruct* ptrVar = &someVar;
2018-03-17 16:22:18 +00:00
SomeStruct** ptrptrVar = &ptrVar;
2018-03-17 03:27:47 +00:00
2018-03-18 15:28:53 +00:00
constexpr auto constexpr_work_fine = NAMEOF(intValue);
std::cout << constexpr_work_fine << std::endl; // intValue
std::cout << NAMEOF(someVar) << std::endl; // someVar
std::cout << NAMEOF(someVar.SomeField) << std::endl; // SomeField
std::cout << NAMEOF((&someVar)->SomeField) << std::endl; // SomeField
std::cout << NAMEOF(::someVar) << std::endl; // someVar
std::cout << NAMEOF(otherVar.LLField.LLLField) << std::endl; // LLLField
std::cout << NAMEOF(&someVar) << std::endl; // someVar
std::cout << NAMEOF(ptrVar) << std::endl; // ptrVar
std::cout << NAMEOF(*ptrVar) << std::endl; // ptrVar
std::cout << NAMEOF(ptrptrVar) << std::endl; // ptrptrVar
std::cout << NAMEOF(*ptrptrVar) << std::endl; // ptrptrVar
std::cout << NAMEOF(**ptrptrVar) << std::endl; // ptrptrVar
std::cout << NAMEOF(+intValue) << std::endl; // intValue
std::cout << NAMEOF(-intValue) << std::endl; // intValue
std::cout << NAMEOF(~intValue) << std::endl; // intValue
std::cout << NAMEOF(!intValue) << std::endl; // intValue
std::cout << NAMEOF(someVar.SomeMethod1()) << std::endl; // SomeMethod1()
std::cout << NAMEOF(&SomeStruct::SomeMethod2) << std::endl; // SomeMethod2
2018-03-18 15:28:53 +00:00
std::cout << NAMEOF(SomeMethod3) << std::endl; // SomeMethod3
2018-03-17 03:35:15 +00:00
2018-03-17 09:12:59 +00:00
std::cout << NAMEOF_TYPE(int[]) << std::endl; // int[]
std::cout << NAMEOF_TYPE(SomeStruct) << std::endl; // SomeStruct
std::cout << NAMEOF_TYPE(Long::LL) << std::endl; // LL
2018-03-18 15:28:53 +00:00
std::cout << NAMEOF_FUN(someVar.SomeMethod1()) << std::endl; // SomeMethod1()
std::cout << NAMEOF_FUN(&SomeStruct::SomeMethod2) << std::endl; // SomeMethod2
2018-03-18 15:28:53 +00:00
std::cout << NAMEOF_FUN(SomeMethod3) << std::endl; // SomeMethod3
2018-03-17 09:12:59 +00:00
std::cout << NAMEOF_VAR(someVar.SomeField) << std::endl; // SomeField
std::cout << NAMEOF_VAR((&someVar)->SomeField) << std::endl; // SomeField
std::cout << NAMEOF_VAR(::someVar) << std::endl; // someVar
2018-03-18 15:28:53 +00:00
return 0;
2018-03-17 09:12:59 +00:00
}