Access variable value using string representing variable#39;s name in C++(在 C++ 中使用表示变量名称的字符串访问变量值)
问题描述
如果标题不清楚,我会尽量澄清我的问题:
If the title was not clear, I will try to clarify what I am asking:
假设我有一个名为 counter 的变量,我知道我可以通过执行以下操作来查看其当前值:
Imagine I have a variable called counter, I know I can see its current value by doing something like:
std::cout << counter << std::endl;
但是,假设我有很多变量,并且直到运行时我不知道要查看哪些变量.
However, assume I have lots of variables and I don't know which I'm going to want to look at until runtime.
有谁知道我可以通过使用变量名称获取变量值的方法,例如:
Does anyone know a way I can fetch the value of a variable by using its name, for example:
std::cout << valueOf("counter") << std::endl;
我觉得能够做到这一点可能会使调试大型复杂项目变得更容易.
I feel being able to do this might make debugging large complex projects easier.
提前感谢您的时间.
更新:所提供的所有答案都是有效且有用的,但重点是 C++ 中不存在反射(阅读推荐的链接后很清楚原因).
Update: All the answers provided are valid and useful, however the main point is that reflection does not exist in C++ (and after reading the link recommended it is clear why).
推荐答案
如前所述,您正在寻找 C++ 中的反射.它没有那个,这个答案解释了原因.
As has been mentioned, you are looking for reflection in C++. It doesn't have that, and this answer explains why.
这篇关于在 C++ 中使用表示变量名称的字符串访问变量值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 C++ 中使用表示变量名称的字符串访问变量值


基础教程推荐
- 这个宏可以转换成函数吗? 2022-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 常量变量在标题中不起作用 2021-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 我有静态或动态 boost 库吗? 2021-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01