- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我正在阅读 J. P. Mueller 和 J. Cogswell 的“C++ All-in-One for Dummies”,偶然发现:
#include <iostream>
using namespace std;
int main()
{
int ExpensiveComputer;
int CheapComputer;
int *ptrToComp;
...
This code starts out by initializing all the goodies involved — two integers and a pointer to an integer.
确认一下,这是一个错误,应该读作“...通过声明”,对吗?让我感到奇怪的是,这些基本错误仍然会出现在书籍中。
最佳答案
从语言的角度来看,这是default initialization .问题是,它们被初始化为不确定的值。
otherwise, nothing is done: the objects with automatic storage duration (and their subobjects) are initialized to indeterminate values.
Default initialization of non-class variables with automatic and dynamic storage duration produces objects with indeterminate values (static and thread-local objects get zero initialized)
请注意,任何读取这些不确定值的尝试都会导致 UB .
根据标准,[dcl.init]/7
To default-initialize an object of type T means:
If T is a (possibly cv-qualified) class type ([class]), constructors are considered. The applicable constructors are enumerated([over.match.ctor]), and the best one for the initializer () is chosenthrough overload resolution ([over.match]). The constructor thusselected is called, with an empty argument list, to initialize theobject.
If T is an array type, each element is default-initialized.
Otherwise, no initialization is performed.
关于c++ - 诠释 x;整数y;诠释*ptr;不是初始化吧?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53391694/
这可能是个愚蠢的问题,但我对 C 指针的理解有点问题。当涉及到数组时更是如此。例如: char ptr[100]; ptr[0]=10; fprintf(stderr, "&ptr: %p \n pt
当我尝试 printf("%p","%d","%u",ptr,ptr,ptr) 时,我得到 00405067 但是当我尝试执行 printf("%p %d %u",ptr, ptr,ptr) 我分别得
ffunction glMultiDrawElements 需要一个指向指针的指针作为其参数之一。如何从 StorableArray Int a 获取 Ptr(Ptr a) ? 最佳答案 您需要先将索
最近我遇到了这个我自己无法理解的问题。 这三个表达式有什么用真是什么意思? *ptr++ *++ptr ++*ptr 我试过里奇。但不幸的是,他无法理解他讲述的这 3 次手术。 我知道它们都是为了增加
这个问题已经有答案了: C pointer syntax (4 个回答) 已关闭 7 年前。 我最近在研究C语言中的指针,我似乎无法完全理解这段代码: int *ptr= (*int) 99999;
假设*ptr指向一个变量。 *ptr、&ptr 和 ptr 各自的含义是什么? 很多时候,我对它们感到困惑。有人介意澄清这些陈述并举一些具体的例子吗? 最佳答案 在函数中采用以下变量。 int i =
这个问题在这里已经有了答案: Why in a 2D array a and *a point to same address? [duplicate] (4 个答案) 关闭 3 年前。 我正在测试
我在一次采访中看到了这段代码。 int main() { int **p; p = (int **) new int(7); cout<<*p; return 0; }
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: ++ on a dereferenced pointer in C? 同样,什么会*指针+= 1*ptr %
++*ptr++ 中的求值顺序是什么?当操作涉及指针和左值时它会改变吗? 如果a++的优先级高于*a或++a,那么为什么是++*a++ 评估为首先返回递增的值然后更改指针,而不是更改指针,然后递增该位
假设*ptr 指向一个变量。 *ptr、&ptr 和 ptr 分别是什么意思? 很多时候,我对它们感到困惑。有人介意澄清这些陈述并举一些具体的例子吗? 最佳答案 在函数中获取以下变量。 int i =
我是 C++ 的新手,最近我花了几天时间阅读有关指针的内容。我意识到下面的 2 段代码给我不同的结果,尽管它们看起来相同。 第一段代码: int a = 5; int* ptr = &a; cout
我有以下代码,完全可以 100% 正常运行,没有错误、编译或运行时。但这太难看了,因为当我确定有办法不需要其中任何一个时,我必须强制转换并使用一个无关的变量。 structMSGB ***init_b
我不太确定 ptr&&(*ptr) 的使用 起初,我不确定这是为了检查 NULL ptr 还是赋值是否存在。 但是现在运行下面的代码后我发现这两种方式都不起作用:发生运行时错误! 有人能解释一下里面发
示例#1 #include struct node{ struct node *next; char *data; }; struct node *reverse_list(stru
我正在尝试使用两种方法删除示例二叉搜索树的左子节点 (10): 方法 1:通过将指针传递给指向当前节点的指针。 方法2:通过将指针的地址传递给当前节点。这不会删除节点,但调用 delete 会破坏指针
我一直在研究 C 中的字符串,并且在以下代码中遇到了以下问题: #include int main() { char *p = "foo"; printf("%p\t%p\t%p",&p
如果我这样做: int x = 10; void *ptr = &x; ptr++; “ptr++”行给出错误。 但是,如果我这样做而不是“ptr++”: ptr = ptr + 1; 它工作得很好。
我正在学习C语言,并且很困惑++*ptr和*ptr++之间的区别。 例如: int x = 19; int *ptr = &x; 我知道 ++*ptr 和 *ptr++ 会产生不同的结果,但我不确定为
我正在学习C语言,并且很困惑++*ptr和*ptr++之间的区别。 例如: int x = 19; int *ptr = &x; 我知道 ++*ptr 和 *ptr++ 会产生不同的结果,但我不确定为
我是一名优秀的程序员,十分优秀!