pointer_type_id_test.cpp
来自「Boost provides free peer-reviewed portab」· C++ 代码 · 共 44 行
CPP
44 行
// Copyright David Abrahams 2004. Distributed under the Boost// Software License, Version 1.0. (See accompanying// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)#include <boost/python/type_id.hpp>#include <boost/detail/lightweight_test.hpp>#include <boost/python/converter/pointer_type_id.hpp>int main(){ using namespace boost::python::converter; boost::python::type_info x = boost::python::type_id<int>(); BOOST_TEST(pointer_type_id<int*>() == x); BOOST_TEST(pointer_type_id<int const*>() == x); BOOST_TEST(pointer_type_id<int volatile*>() == x); BOOST_TEST(pointer_type_id<int const volatile*>() == x); BOOST_TEST(pointer_type_id<int*&>() == x); BOOST_TEST(pointer_type_id<int const*&>() == x); BOOST_TEST(pointer_type_id<int volatile*&>() == x); BOOST_TEST(pointer_type_id<int const volatile*&>() == x); BOOST_TEST(pointer_type_id<int*const&>() == x); BOOST_TEST(pointer_type_id<int const*const&>() == x); BOOST_TEST(pointer_type_id<int volatile*const&>() == x); BOOST_TEST(pointer_type_id<int const volatile*const&>() == x); BOOST_TEST(pointer_type_id<int*volatile&>() == x); BOOST_TEST(pointer_type_id<int const*volatile&>() == x); BOOST_TEST(pointer_type_id<int volatile*volatile&>() == x); BOOST_TEST(pointer_type_id<int const volatile*volatile&>() == x); BOOST_TEST(pointer_type_id<int*const volatile&>() == x); BOOST_TEST(pointer_type_id<int const*const volatile&>() == x); BOOST_TEST(pointer_type_id<int volatile*const volatile&>() == x); BOOST_TEST(pointer_type_id<int const volatile*const volatile&>() == x); return boost::report_errors();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?