gpt4 book ai didi

c++ - C++ 中初始化的结果是什么?

转载 作者:行者123 更新时间:2023-12-03 03:11:24 25 4
gpt4 key购买 nike

初始化的返回值是什么?例如:在下面的代码中;

#include<iostream>

int main()
{
int age = 30; //does this statement return (thus; yield) anything?

while(int i = 0){ //a similar statement (expression) used here in this condition
std::cout<<"OK";
}

return 0;
}
  • 语句 int Age = 27; 返回什么?
  • 当进行初始化(返回赋值运算符的左操作数)时,通常的赋值运算符含义是否适用?

我想知道这一点的原因是,当我们查看上面的条件语句时,我们会看到用作条件的变量的类似初始化。我知道无论返回什么值都会转换为 bool 类型。

注意:我并不想在 while 语句的条件下将 i 与 0 进行比较。

最佳答案

带有初始值设定项的声明语句只是声明语句,而不是表达式。它不会产生值。您不能执行类似 int x = (int n = 42); 的操作。

while 循环是一种特殊情况。您可以使用声明作为while循环的条件。根据cppreference.com ,

If this is a declaration, the initializer is evaluated before each iteration, and if the value of the declared variable converts to false, the loop is exited.

关于c++ - C++ 中初始化的结果是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59294508/

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