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.
String 内の名前でオブジェクトからメソッドを呼び出す方法があるかどうかを知りたいだけです。
このようなもの
setLocation(int,int)からのメソッドですが、文字列でその名前を使用してjLabel1これを呼び出すにはどうすればよいですか? method(setLocation())
setLocation(int,int)
jLabel1
method(setLocation())
String component = jLabel1.getName(); component.setLocation(x,y);
もちろん、Java リフレクション APIを使用できます
このSOの質問が役立つ場合があります。