对于以下代码片段,它在方法中显示不同的引用计数.有人可以解释为什么这些价值观不同吗?
class Foo { }; void f1( const std::shared_ptr<Foo>& ptr ) { std::cout << "f1(): counts: " << ptr.use_count() << std::endl; } void f2( const std::shared_ptr<const Foo>& ptr ) { std::cout << "f2(): counts: " << ptr.use_count() << std::endl; } int main() { std::shared_ptr<Foo> ptr( new Foo ); std::cout << "main(): counts: " << ptr.use_count() << std::endl; f1( ptr ); f2( ptr ); std::cout << "main(): counts: " << ptr.use_count() << std::endl; return 0; }
相应输出:
main(): counts: 1 f1(): counts: 1 f2(): counts: 2 main(): counts: 1
解决方法
请注意,std :: shared_ptr< Foo>和std :: shared_ptr< const Foo>是不同的类型(即具有不同模板类型参数的类模板实例化是不同的类型).
当您将ptr(即std :: shared_ptr&Foo>)传递给f2时,它不能绑定到引用std :: shared_ptr< const Foo>直;一个临时std :: shared_ptr< const Foo>必须被构造,然后绑定到参数ptr.构建的shared_ptr与原始shared_ptr共享所有权,因此在f2()中将use_count增加到2.
当f2(ptr);结束;那么use_count减少到1.