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.
我觉得这应该很容易,但我找不到适用的问题。
X是一个shared_ptr<shared_ptr<Item> >。
X
shared_ptr<shared_ptr<Item> >
我有一个接受的函数shared_ptr<Item>
shared_ptr<Item>
我如何获得那个内部指针?我不能这样做X ->,并且X->get()会返回一个Item*
X ->
X->get()
Item*
与普通指针一样,您可以通过取消引用来访问共享指针的目标:
f(*X);