调用`std.math.clamp`会产生编译错误`error:无法评估Zig中的常量表达式`

问题描述

为什么该程序无法编译? Zig版本0.6.0。

const std = @import("std");
fn get_value () f32 {
    return 1.0;
}
test "testcase" {
    const value: f32 = 1. + get_value() ;
    _ = std.math.clamp(value,0.0,255.0);
}

给出编译错误:

$ zig test src/clamp.zig       
Semantic Analysis [790/1017] ./src/clamp.zig:9:24: error: unable to evaluate constant expression
    _ = std.math.clamp(value,255.0);
                       ^
./src/clamp.zig:9:23: note: referenced here
    _ = std.math.clamp(value,255.0);
                      ^

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)