在Java中按名称设置变量
我希望在 Java 中实现以下内容:
class Foo{
private int lorem; //
private int ipsum;
public setAttribute(String attr, int val){
//sets attribute based on name
}
public static void main(String [] args){
Foo f = new Foo();
f.setAttribute("lorem",1);
f.setAttribute("ipsum",2);
}
public Foo(){}
}
...其中变量是根据变量名称设置的,无需对变量名称进行硬编码,也不使用任何其他数据结构。 这可能吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
以下是使用反射实现
setAttribute
的方法(我已重命名该函数;不同的字段类型有不同的反射函数):Here's how you might implement
setAttribute
using reflection (I've renamed the function; there are different reflection functions for different field types):一般来说,您想要使用反射。 这是对 带有示例的主题
特别是,“更改字段值”部分描述了如何执行您想要执行的操作。
我注意到作者说:“这个功能非常强大,是其他传统语言中没有的。” 当然,在过去的十年中(这篇文章写于 1998 年)我们已经看到动态语言取得了巨大的进步。 上述内容在 Perl、Python、PHP、Ruby 等中相当容易完成。 我怀疑这可能是您根据“eval”标签而来的方向。
In general, you want to use Reflection. Here is a good introduction to the topic with examples
In particular, the "Changing Values of Fields" section describes how to do what you'd like to do.
I note that the author says, "This feature is extremely powerful and has no equivalent in other conventional languages." Of course, in the last ten years (the article was written in 1998) we have seen great strides made in dynamic languages. The above is fairly easily done in Perl, Python, PHP, Ruby, and so on. I suspect this is the direction you might have come from based on the "eval" tag.
另外,请查看 BeanUtils,它可以隐藏使用反射的一些复杂性。
Also, take a look at BeanUtils which can hide some of the complexity of using reflection from you.
这个问题是针对整数的,这很有帮助,但是这里有一些更笼统的内容。 如果您要加载字段名称/字段值对的
String
表示形式,则这种类型的方法非常有用。The question is specific to ints, which is helpful, however here is something a bit more general. This type of method is useful if you are loading in
String
representations of field name / field value pairs.根据使用情况,您可以按照上面的建议使用反射,或者 HashMap 可能更适合......
Depending on the usage, you can use reflection as advised above, or perhaps a HashMap would be better suited...
您可能希望在执行此操作时缓存一些反射数据:
You might want to cache some of the reflection data while you're at it: