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 API 文档在谈论“远程对象”时是什么意思?
例如IBinder状态的 API 文档:
该接口描述了与远程对象交互的抽象协议。
但我已经搜索过,似乎找不到任何定义,例如“远程对象是......等等等等等等......”
IBinder是一个允许 IPC(进程间通信)的接口。您可能知道,所有应用程序(大部分时间)都在它们自己的进程上运行,并且不能直接与在其他进程中运行的应用程序交互。您可以用来在它们之间创建交互的一种方法是使用 IBinder. IBinder允许这些“远程”对象之间的通信。
IBinder