Tôi đã đoạn mã sau:thử nghiệm nếu một shared_ptr là NULL
std::vector< boost::shared_ptr<Foo> >::iterator it;
it = returnsAnIterator();
// often, it will point to a shared_ptr that is NULL, and I want to test for that
if(*it)
{
// do stuff
}
else // do other stuff
Tôi có thử nghiệm một cách chính xác? Các tài liệu tăng nói rằng một shared_ptr có thể được chuyển đổi hoàn toàn thành một bool, nhưng khi tôi chạy mã này nó segfaults:
Program received signal SIGSEGV, Segmentation fault.
0x0806c252 in boost::shared_ptr<Foo>::operator Foo*
boost::shared_ptr<Foo>::* (this=0x0)
at /usr/local/bin/boost_1_43_0/boost/smart_ptr/detail/operator_bool.hpp:47
47 return px == 0? 0: &this_type::px;
Trình lặp là 'vector.begin()', vì vậy dường như tôi đã thử nghiệm điều sai. Cảm ơn bạn đã giúp đỡ. – Max