C 中的动态变量声明

发布于 2024-11-08 12:44:40 字数 221 浏览 0 评论 0原文

我是一名 ruby​​ 开发人员,自从我用 C 编写代码以来已经很长时间了。我想在 C 中使用一种行为类似于符号的数据类型。

这可能吗?

  • 程序询问用户姓名

  • 用户回复 - “foobar”

  • 程序声明一个同名整数,即

    int foobar;
    

I'm a ruby developer and its been long time since I've coded in C. I want to use a datatype in C which behaves like a symbol.

Is this possible?

  • Program asks user for name

  • User replies - "foobar"

  • Program declares an integer with the same name i.e.

    int foobar;
    

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

仅冇旳回忆 2024-11-15 12:44:40

与解释性语言不同,C 在运行时没有变量名字典。运行时根本不存在变量名。因此不幸的是,在 C 中不可能做你想做的事。

Unlike in interpreted languages, C does not have a dictionary of variable names at runtime. There exist no variable names at runtime at all. Hence unfortunately it is impossible to do what you want in C.

久隐师 2024-11-15 12:44:40

如果不实现您自己的符号表来模拟所需的行为(本质上是实现您自己的微编程语言),则不可能在 C 中执行此操作。

It's not possible to do this in C without implementing your own symbol table to emulate the desired behavior (essentially, implementing your own micro-programming language).

自此以后,行同陌路 2024-11-15 12:44:40

不可以。C 必须在编译时知道名称。

您能做的最好的事情就是创建自己的名称和值字典。但工作量很大。

No. C must know names at compile time.

The best you could do is create your own dictionary of names and values. Much work though.

烟火散人牵绊 2024-11-15 12:44:40

获得用户名变量后,您想用它做什么?您将使用 foobaf 变量执行什么类型的操作?

正如其他人建议的那样,您可以使用数据结构将用户名与一段整数数据动态关联,但知道您想用它做什么将有助于提供关于这是否必要以及您可能想要哪些数据结构和算法的建议看看。

What do you want to do with the username-as-variable once you have it? What kind of operations would you perform with or on your foobaf variable?

As others have suggested you could use a data structure to dynamically associate the user name with a piece of integer data but knowing what you want to do with it would help inform suggestions as to whether that's even necessary and which data structures and algorithms you might want to look at.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文