概述
1 typedid
C++ typeid运算符:获取类型信息 http://c.biancheng.net/view/2301.html
怎样在C++中获得完整的类型名称 - zfyouxi - 博客园 https://www.cnblogs.com/zfyouxi/p/5060288.html
2 信息解析
mangle和demangle - 巴黎河畔 - 博客园 https://www.cnblogs.com/robinex/p/7892795.html
3 给出一个例子
//log.h
#ifndef __LOG_H__
#define __LOG_H__
#include <iostream>
#include <stdio.h>
#include <string>
#include <stdlib.h>
#include <unistd.h>
#include <typeinfo> // typeid need
#include <cxxabi.h> // abi need
// get class name
static int demangle_status; //注意这里必须是static,否则会运行时报错多重定义
#define __CLASS__ __class__
#define __class__ abi::__cxa_demangle(typeid(*this).name(), 0, 0, &demangle_status)
#endif
最后
以上就是酷炫斑马为你收集整理的c++获取打印 class类名 及相关1 typedid2 信息解析3 给出一个例子的全部内容,希望文章能够帮你解决c++获取打印 class类名 及相关1 typedid2 信息解析3 给出一个例子所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复