gpt4 book ai didi

java - 使用字符串值作为变量

转载 作者:行者123 更新时间:2023-11-30 11:25:12 25 4
gpt4 key购买 nike

我有一种情况要使用字符串值作为变量,例如:

int val1;
int val2;
String s = "val1*val2";

现在我必须得到这样的输出:

int output = (value which is calculated in s);

我怎样才能做到这一点?

最佳答案

你的问题不是很清楚。但你可以尝试如下

 String s = String.valueOf(val1*val2);

然后

 int output = Integer.parseInt(s);

如果您的意思是通过名称获取值。你可以试试 Java-reflection

关于java - 使用字符串值作为变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20371265/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com