這篇文章主要介紹“ServiceManagerProxy中mRemote變量指的什么”,在日常操作中,相信很多人在ServiceManagerProxy中mRemote變量指的什么問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”ServiceManagerProxy中mRemote變量指的什么”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
成都創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供定遠(yuǎn)網(wǎng)站建設(shè)、定遠(yuǎn)做網(wǎng)站、定遠(yuǎn)網(wǎng)站設(shè)計、定遠(yuǎn)網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、定遠(yuǎn)企業(yè)網(wǎng)站模板建站服務(wù),10余年定遠(yuǎn)做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。
首先標(biāo)紅的代碼Binder.allowBlocking(BinderInternal.getContextObject()),實際上返回的是BinderProxy對象實例
sServiceManager = ServiceManagerNative
.asInterface(Binder.allowBlocking(BinderInternal.getContextObject()));
static public IServiceManager asInterface(IBinder obj)
{
if (obj == null) {
return null;
}
IServiceManager in =
(IServiceManager)obj.queryLocalInterface(descriptor);
if (in != null) {
return in;
}
return new ServiceManagerProxy(obj);
}
然后繼續(xù)ServiceManagerProxy,從下面來看,很顯然了。
class ServiceManagerProxy implements IServiceManager {
public ServiceManagerProxy(IBinder remote) {
mRemote = remote;
}
。。。
。。。
}
}
到此,關(guān)于“ServiceManagerProxy中mRemote變量指的什么”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
當(dāng)前標(biāo)題:ServiceManagerProxy中mRemote變量指的什么
URL分享:http://weahome.cn/article/pchihi.html