标签: java string methods
我只想知道是否有任何方法可以通过String中的名称来调用对象上的方法。
像这样的东西
setLocation(int,int)这是来自jLabel1的方法,我怎么称呼这个 method(setLocation())在字符串中使用其名称?
setLocation(int,int)
jLabel1
method(setLocation())
String component = jLabel1.getName(); component.setLocation(x,y);
答案 0 :(得分:0)
当然,您可以使用Java reflection API
This SO question可能会对您有所帮助。