nameof_module/example/example.cpp

123 lines
4.4 KiB
C++
Raw Normal View History

2018-03-24 08:58:08 +00:00
// nameof() c++11 example
2018-03-17 03:09:49 +00:00
//
2018-03-24 08:58:08 +00:00
// Licensed under the MIT License <http://opensource.org/licenses/MIT>.
// Copyright (c) 2018 Terik23 <neargye@gmail.com>.
2018-03-17 03:09:49 +00:00
//
2018-03-24 08:58:08 +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-24 08:58:08 +00:00
// The above copyright notice and this permission notice shall be included in all
2018-03-17 03:27:47 +00:00
// copies or substantial portions of the Software.
2018-03-17 03:09:49 +00:00
//
2018-03-24 08:58:08 +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
2018-03-17 03:27:47 +00:00
// SOFTWARE.
2018-03-17 04:31:59 +00:00
#include <nameof.hpp>
2018-03-27 09:03:12 +00:00
#include <iostream>
#include <stdexcept>
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 03:27:47 +00:00
int someVar = 0;
2018-03-27 14:00:06 +00:00
enum class Color { RED, GREEN, BLUE };
2018-03-22 13:47:30 +00:00
void TestCase1() {
2018-03-17 03:27:47 +00:00
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
2018-03-27 14:00:06 +00:00
std::cout << NAMEOF(Color::RED) << std::endl; // RED
2018-03-18 15:28:53 +00:00
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-22 14:09:55 +00:00
std::cout << NAMEOF_FULL(someVar.SomeField) << std::endl; // someVar.SomeField
std::cout << NAMEOF_FULL(&SomeStruct::SomeMethod2) << std::endl; // &SomeStruct::SomeMethod2
2018-03-22 13:47:30 +00:00
}
void TestCase2() {
auto div = [](int x, int y) {
if (y == 0) {
throw std::invalid_argument(std::string(NAMEOF(y)).append(" should not be zero!"));
}
return x / y;
};
try {
int z = div(10, 0);
} catch (const std::exception& e) {
std::cout << e.what() << std::endl; // y should not be zero!
}
}
2018-03-27 08:04:47 +00:00
void TestCase3() {
std::cout << NAMEOF_FUNCTION(TestCase3) << " method entry" << std::endl; // TestCase3 method entry
}
2018-03-22 13:47:30 +00:00
int main() {
TestCase1();
TestCase2();
2018-03-18 15:28:53 +00:00
2018-03-27 08:04:47 +00:00
TestCase3();
2018-03-18 15:28:53 +00:00
return 0;
2018-03-17 09:12:59 +00:00
}