has_nothrow_constructor.qbk

来自「Boost provides free peer-reviewed portab」· QBK 代码 · 共 35 行

QBK
35
字号
[/   Copyright 2007 John Maddock.  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).][section:has_nothrow_constructor has_nothrow_constructor]   template <class T>   struct has_nothrow_constructor : public __tof {};     template <class T>   struct has_nothrow_default_constructor : public __tof {};  __inherit If T is a (possibly cv-qualified) type with a non-throwing default-constructorthen inherits from __true_type, otherwise inherits from __false_type.  Type `T`must be a complete type.These two traits are synonyms for each other.__compat If the compiler does not support partial-specialization of class templates, then this template can not be used with function types.Without some (as yet unspecified) help from the compiler, `has_nothrow_constructor` will never report that a class or struct has a non-throwing default-constructor; this is always safe, if possibly sub-optimal.Currently (May 2005) only Visual C++ 8 has the necessary compiler __intrinsics to ensure that thistrait "just works".__header ` #include <boost/type_traits/has_nothrow_constructor.hpp>` or ` #include <boost/type_traits.hpp>`[endsect]

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?