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.
我正在寻找与 Android 上的 Objective-C 中存在的块等效的块。
因为我正在寻找异步数据和后台线程的最佳实践。
Java 中没有直接的等价物。最接近的是匿名侦听器,它们是类的本地创建和实例化。
Java 不支持块之类的东西,但根据您要完成的任务,AsyncTask可能就足够了。