在编译时检查 tr1 数组的大小

发布于 2024-10-15 22:51:42 字数 439 浏览 2 评论 0 原文

我刚刚发现 boost::array::static_size 不是 tr1::array 的一部分,或者至少它不在我的实现中(GCC 4.2.1),并且我在任何 tr1 文档中都找不到它。

是否有另一种方法可以对 tr1 数组中的元素数量执行编译时断言?

例如,以下内容适用于 boost 数组,但不适用于 tr1 数组:

template<typename T>
void CheckArray(const T& input) {
  BOOST_STATIC_ASSERT(T::static_size >= 2);
}

我知道我可以只使用 boost 的数组,但我很好奇。

如果没有办法做到这一点,也许有人知道为什么 static_size 没有包含在 tr1 中?难道只是tr1创建后为boost添加的一个功能?

I just found out that boost::array::static_size isn't part of tr1::array, or at least it's not in my implementation (GCC 4.2.1) and I can't find it in any tr1 documentation.

Is there another way to perform a compile-time assertion on the number of elements in a tr1 array?

e.g. The following works with a boost array but not a tr1 array:

template<typename T>
void CheckArray(const T& input) {
  BOOST_STATIC_ASSERT(T::static_size >= 2);
}

I know I can just use boost's array instead, but I'm curious.

If there's no way to do it, maybe someone knows why static_size wasn't included in tr1? Is it just a feature that was added to boost after tr1 was created?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小情绪 2024-10-22 22:51:42

TR1 本身表示 std::tuple_size >::value 返回N,即数组的大小。

TR1 itself says that std::tuple_size<array<T, N> >::value returns N, the size of the array.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文