Boost C++ 库

...全球备受推崇和设计精湛的 C++ 库项目之一。 Herb SutterAndrei Alexandrescu, C++ Coding Standards

函数模板 operator!= - Boost C++ 函数库
PrevUpHomeNext

函数模板 operator!=

boost::interprocess::operator!=

提要

// In header: <boost/interprocess/smart_ptr/intrusive_ptr.hpp>


template<typename T, typename VP> 
  bool operator!=(const typename intrusive_ptr< T, VP >::pointer & a, 
                  intrusive_ptr< T, VP > const & b);

描述

返回 a != b.get()。不抛出异常


PrevUpHomeNext