Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: C/C++ 中是否有标准符号函数(signum、sgn)?
我的意思是类似于abs()删除符号的类比,但在这种情况下,一个函数接受任何负整数并返回-1,1对于正数并0保持不变?
abs()
-1
1
0
(是的,我知道我可以很容易地自己编写,但我在这里询问是否以某种语言提供了这样的功能。)
不,它不存在于标准库中。