[問題] Android 的智能指標 sp

作者: gn00618777 (非常念舊)   2016-04-24 23:18:17
不知道有沒有人瞭解 Android 的 class sp?
在源碼中我常看到下面用法
sp <Camera> c = new Camera(int)
new 在 c++中就是配置記憶體然後回傳記憶體位址,但 c 又是一個物件。事實上,我根
本搞不清楚 android 的這個 c 代表的是甚麼。一開始我以為他是一個指標,去接new
出來的。但好像不是這麼回事,因為我寫了一個小程式去試
#include<iostream>
using namespace std;
template<typename T>
class sp{
public:
sp(T *other){
cout<<"This is the first constructor"<<endl;
}
sp(const sp<T>& other){}
};
class myClass{
public:
myClass():a(0){}
int getA(){
return a;
}
private:
int a;
};
int main(){
sp<myClass> c = new myClass();
cout<<c->sp()<<endl;
}
出來的訊息意思是說 c 是一個物件,不是一個指標~
[Error] base operand of '->' has non-pointer type 'sp<myClass>'
應該是 android 的 class sp 有寫些動作.....,小弟底子差,看了幾天也問了板友只
知道
sp<myClass> c = new myClass()
這個用法會用到 c++ 的 copy initialization,以及我知道他會 call 到 class sp 內
的 sp(T *other) 建構子, 我不知道這個 c 代表甚麼?
sp<myClass> c = new myClass() 這個式子
會動用到 class sp 內的哪一個 operater overload 還是 不會?
~"~
希望能從各位牛人汲取到一點建議
謝謝
作者: rexx   2016-04-24 23:56:00
kheresy.wordpress.com/2012/03/03/c11_smartpointer_p1/c是一個物件 但他有寫operator->() 所以可以用pointer的寫法c->xxx這樣 感覺上直接當做pointer在用有興趣可以去看他source codehttp://androidxref.com/6.0.1_r10/xref/system/core/include/utils/StrongPointer.h
作者: cha122977 (CHA)   2016-04-25 02:03:00
sp<Camera>可以直接當成Camera*來用用sp包他是為了自己管理delete時機(ARC)
作者: gn00618777 (非常念舊)   2016-04-25 23:04:00
看到了一些關鍵,有時間消化完再來分享..

Links booklink

Contact Us: admin [ a t ] ucptt.com