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.
我想知道我是否有一个定义为:
void executeFunc(String funcName)
我可以以某种方式执行 MyObject.funcName(); 吗?
我想做的是有一个类来处理对服务器的所有调用,然后它们返回 XML 数据,所以我想使用一个 AsyncTask 来处理 15 种左右不同类型的调用。
谢谢!
你可以使用反射来做到这一点。