考虑:
#include <iostream>
#include <typeinfo>
#include <type_traits>
#include <cxxabi.h>
#include <boost/hana.hpp>
namespace hana = boost::hana;
struct Person {
BOOST_HANA_DEFINE_STRUCT(Person,
(std::string, name),
(int, age)
);
};
template<typename T>
void stringify(const T& v) {
hana::for_each(hana::accessors<T>(), [&v](auto a) {
// Here I'm printing the demangled type, just to make sure it is actually the type I'm thinking it is.
std::cout << abi::__cxa_demangle(typeid(decltype(hana::second(a)(v)){}).name(), 0, 0, 0);
// If the value is arithmetic, "quote" should be an empty string. Else, it should be an actual quote.
// UNEXPECTED BEHAVIOR IS HERE
std::string quote{(std::is_arithmetic<decltype(hana::second(a)(v))>::value?"":"\"")};
// Finally do what we're here for.
std::cout << " " << hana::first(a).c_str() << " = " << quote << hana::second(a)(v) << quote << "\n";
});
}
int main() {
Person john;
john.name = "John Doe";
john.age = 42;
stringify(john);
}
输出:
std::__cxx11::basic_string</*...*/> name = "John Doe"
int age = "42"
我试图用来std::is_arithmetic
判断我是否正在处理数字而不是其他一些非算术类型,并相应地打印(或不打印)报价。
但由于某种原因,被“返回”(通过成员::value
)的值是false
int
cxxabi.h
正如您从输出中看到的那样,这会导致int
用引号打印。
我的问题是:为什么它返回错误?这与通用 lambda 有什么关系?我可以修复它吗?
我实际上是直接在Coliru上测试的,所以你可以假设那里使用的任何 gcc 版本(目前是 6.3.0)。