Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有一个test值为的变量example。我想创建一个名为 的值的test新变量,因此将调用新变量example。
test
example
这可能吗?如果是这样,怎么做?
不,这在 Java 中是不可能的。变量名不能在运行时设置。但是,您可以使用将标识符Map映射到值的 a 来模拟这一点。String
Map
String
String test = "example"; ... Map<String, String> vars = new HashMap<String, String>(); vars.put(test, "...");