内存位置的顺序
Order of memory locations
new操作符分配内存位置的顺序是什么?
对于上下文,如果我们实现的是链表,那么依次创建的新节点的内存位置是否递增?
What is the order of memory locations allocated by new operator?
语言未指定顺序。顺序是语言实现选择的顺序。
if we are implementing a linked list, then does the new nodes created successively have increasing memory locations?
如果你使用默认分配器,那么他们可能有;但他们可能没有。如果他们确实有,那可能是偶然的。没有任何保证。
如果您自己编写分配器,那么您就可以控制分配。
new操作符分配内存位置的顺序是什么?
对于上下文,如果我们实现的是链表,那么依次创建的新节点的内存位置是否递增?
What is the order of memory locations allocated by new operator?
语言未指定顺序。顺序是语言实现选择的顺序。
if we are implementing a linked list, then does the new nodes created successively have increasing memory locations?
如果你使用默认分配器,那么他们可能有;但他们可能没有。如果他们确实有,那可能是偶然的。没有任何保证。
如果您自己编写分配器,那么您就可以控制分配。