我有以下测试:
BOOST_CHECK_NE(pointer,nullptr);
由于编译失败
/xxx/include/boost/test/tools/detail/print_helper.hpp:50:14: error: ambiguous overload for ‘operator<<’ (operand types are ‘std::ostream {aka std::basic_ostream}’ and ‘std::nullptr_t’)
有什么问题,我应该如何测试空指针?
解决方法
指针非空的最简单检查是:
BOOST_CHECK(pointer);
空指针隐式转换为false,非空指针隐式转换为true.
至于你的用例有什么问题:nullptr不是指针类型,它的类型为std :: nullptr_t.它可以转换为任何指针类型(或指向成员类型的指针).但是,<<<<<用于将std :: nullptr_t插入流中.您必须将nullptr转换为适当的指针类型才能使其工作.