命名空间
变体
操作

C++ 关键字: return

来自 cppreference.com
< cpp‎ | keyword
 
 
C++ 语言
 
 

[编辑] 用法

  • return 语句:作为语句的声明

[编辑] 示例

#include <cstdlib>
#include <iostream>
 
[[nodiscard]] constexpr auto clamp(int value, int min, int max) noexcept
{
    if (value <= min)
        return min;
    else if (max <= value)
        return max;
 
    return value;
    // won't be executed past 'return' statement
 
    std::exit(value);
}
 
int main() noexcept
{
    std::cout << clamp(1, 2, 4);
    std::cout << clamp(3, 2, 4);
    std::cout << clamp(5, 2, 4);
 
    return 0; // the value '0' that in main() indicates a success
}

输出

234

[编辑] 另请参阅

(自 C++17 起)
(自 C++23 起)
(自 C++20 起)