gpt4 book ai didi

c++ - boolean 变量的初始化

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:57:23 25 4
gpt4 key购买 nike

这个问题可能看起来很幼稚(见鬼,我觉得很幼稚),但我无法找到令我满意的答案。

以这个简单的 C++ 程序为例:

#include<iostream>
using namespace std;
int main ()
{
bool b;
cout << b;
return 0;
}

编译和执行时,它总是打印0

问题是这不是我期望它做的:据我所知,局部变量没有初始化值,我相信随机字节更有可能不同而不是等于 0

我错过了什么?

最佳答案

这是未定义的行为,因为您正在使用未初始化变量的值。您不能期望从具有未定义行为的程序中得到任何东西。

特别是,您的程序在初始化 operator << 的参数时需要进行所谓的左值到右值 转换来自 b . C++11 标准第 4.1/1 段规定:

A glvalue (3.10) of a non-function, non-array type T can be converted to a prvalue. If T is an incomplete type, a program that necessitates this conversion is ill-formed. If the object to which the glvalue refers is not an object of type T and is not an object of a type derived from T, or if the object is uninitialized, a program that necessitates this conversion has undefined behavior. If T is a non-class type, the type of the prvalue is the cv-unqualified version of T. Otherwise, the type of the prvalue is T.

关于c++ - boolean 变量的初始化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16857511/

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