gpt4 book ai didi

c++ - 在可能的情况下扩展为 static_assert 的断言宏?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:44:39 24 4
gpt4 key购买 nike

我有一些通用代码需要对成员函数的结果运行断言。此成员函数可能是 constexpr,也可能不是。

template<typename T>
void foo(T t) {
assert(t.member_function() == 10);
}

因为 t.member_function() 可能 是一个常量表达式,我想知道是否可以将其视为 static_assert这种情况,但在其他情况下默认为正常的 assert。这可能吗?

最佳答案

这是一个有点疯狂的解决方案。

取消注释 Const c; foo(c); 行,你会发现它无法编译。这是编译时断言。

需要variable length arrays ,也许还有其他编译器特定的东西。我在 g++-4.6 上。

数组的大小是 0 或 -1,这取决于成员函数是否返回 10。所以如果这可以在编译时计算,那么编译就会意识到它是一个非可变长度数组,并且它有负大小。负尺寸允许它提示。否则,它会落入常规断言。

请注意:在运行时断言失败后,我得到了一些运行时版本的核心转储。也许它不喜欢尝试 free 具有负大小的数组。更新:我得到了任何断言失败的核心转储,甚至 int main() {assert (1==2);}。这正常吗?

#include <iostream>
#include <cassert>
using namespace std;

struct Const {
constexpr int member_function() { return 9; }
};
struct Runtime {
int member_function() { return 9; }
};

template<typename T>
void foo(T t) {
if(0) { // so it doesn't actually run any code to malloc/free the vla
int z[(t.member_function()==10)-1]; // fails at compile-time if necessary
}
assert(t.member_function()==10);
}


int main() {
//Const c; foo(c);
Runtime r; foo(r);
}

关于c++ - 在可能的情况下扩展为 static_assert 的断言宏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18216276/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com