gpt4 book ai didi

c++ - 如何从我的类的 ceil 函数调用 c++ 中的 ceil 函数

转载 作者:塔克拉玛干 更新时间:2023-11-03 08:26:22 26 4
gpt4 key购买 nike

我需要委托(delegate)“ceil”函数。我的类有方法'ceil',它需要返回cpp 的本地方法'ceil'。怎么调用它?

double ceil() {
return ceil();
}

-这是一个递归

最佳答案

double ceil() {
return ::ceil(something); // ceil actually has an argument
}

当然,上面是在类定义里面定义方法的时候;以下是在类外定义方法时的情况:

double MyClass::ceil() {
return ::ceil(something);
}

正如评论所建议的那样,使用 std::ceil来自包括<cmath>更好,因为确实,::ceil不保证是 ceil来自 C 库。

关于c++ - 如何从我的类的 ceil 函数调用 c++ 中的 ceil 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23060273/

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