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.
我只想知道是否有任何方法可以通过字符串中的名称从对象上调用方法。
像这样的东西
setLocation(int,int)这是一个方法jLabel1,我如何 method(setLocation())通过在字符串中使用它的名称来调用它?
setLocation(int,int)
jLabel1
method(setLocation())
String component = jLabel1.getName(); component.setLocation(x,y);
当然,您可以使用Java 反射 API
这个 SO question可能会对您有所帮助。