C++03 没有static_assert
-type 的东西,这是 C++11 的特性。然而,有BOOST_STATIC_ASSERT
. 如果您无法使用 Boost,那么这实际上是一个相当简单的写法:
namespace detail {
template <bool > struct my_static_assert;
template <> struct my_static_assert<true> { };
template <size_t > struct my_tester { };
}
#define MY_STATIC_ASSERT(B) \
typedef ::detail::my_tester< sizeof(::detail::my_static_assert< ((B) == 0 ? false : true) >)> \
my_static_assert_typedef_ ## __COUNTER__ __attribute__((unused))
这个想法是,我们将我们的表达式B
,将其转换为 a bool
,并在一个上下文中使用它,如果它是true
,我们将有一个完整的类型,如果它是false
,我们不会。你不能采用sizeof()
不完整的类型,所以这将是一个编译错误。
所以如果我这样做了:
MY_STATIC_ASSERT(sizeof(int) >= 5);
gcc 给了我:
main.cpp: In function 'int main()':
main.cpp:9:92: error: invalid application of 'sizeof' to incomplete type 'detail::my_static_assert<false>'
typedef detail::my_tester< sizeof(detail::my_static_assert< ((B) == 0 ? false : true) >)> \
^
main.cpp:15:5: note: in expansion of macro 'MY_STATIC_ASSERT'
MY_STATIC_ASSERT(sizeof(int) >= 5);
^
它不如:
main.cpp:15:5: error: static assertion failed:
static_assert(sizeof(int) >= 5, "");
^
但是,当您没有语言功能时,就会发生这种情况。
有了它,我们可以转换:
static_assert(std::is_same<std::iterator_traits<InputIterator>::value_type, int>(),
"Not an int iterator");
至:
namespace details {
template <typename T, typename U>
struct is_same { static const bool value = false; };
template <typename T>
struct is_same<T, T> { static const bool value = true; };
}
MY_STATIC_ASSERT(details::is_same<
std::iterator_traits<InputIterator>::value_type, int
>::value); // Not an int iterator
iterator_traits
在 C++03 中已经存在,添加注释会让消息显示在编译错误中。