- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
下面是我的代码,其中我定义了两个类 Node
和 List
来执行您认为它们执行的操作。在扩展列表时,我需要创建一个新的 Node 对象(请参阅代码中带有注释的行)。如果我使用 new Node(data)
那么一切看起来都很好并且输出是
2 3 5
但是如果我将其更改为 &Node(data)
,输出将变为
7530648 7530648 7530648 7530648 7530648 7530648 7530648 7530648 7530648 7530648 7530648 7530648
7530648 7530648 7530648 7530648 7530648 7530648 7530648 7530648 7530648 7530648 7530648 7530648
(等等;除非我关闭窗口,否则不会结束)
这里使用new Node(data)
和&Node(data)
有什么区别?为什么第二种情况的输出这么奇怪?
请注意,我为 TDM-GCC-64-5.1.0 编译器使用了 -fpermissive 选项。虽然这看起来是一个糟糕的选择,但我刚刚意识到我实际上不确定的是如何long 由表达式 Node(data) 创建的 Node 对象存在。所以希望这个问题对于那些可能有同样困惑的人来说仍然有用。
#include<iostream>
using namespace std;
class Node
{
int _data;
Node* _next;
public:
Node(int data) { _data = data; _next = 0; }
void setNext(Node* next) { _next = next; }
Node* getNext() const { return _next; }
int getData() const { return _data; }
};
class List
{
Node* _head;
public:
List() { _head = 0; }
void add(int data)
{
if(!_head)
{
_head = new Node(data);
return;
}
Node* temp = _head;
while(temp->getNext())
temp = temp->getNext();
temp->setNext(new Node(data)); // What if I use `&Node(data)` instead of `new Node(data)`?
}
void print() const
{
Node* temp = _head;
while(temp)
{
cout<<temp->getData()<<" ";
temp = temp->getNext();
}
}
};
int main()
{
List L;
L.add(2);
L.add(3);
L.add(5);
L.print();
}
最佳答案
What is the difference between using
new classObject
and&classObject
new classObject
创建具有动态存储的 classObject
类型的新对象。
&classObject
返回由标识符 classObject
命名的对象的地址。
&Node(data)
该表达式的格式不正确。这里的addressof运算符的操作数是一个右值。这是不允许的。成功编译程序不需要编译器,并且该标准没有描述程序应该如何运行。以下是随机选择的编译器的输出示例:
error: taking the address of a temporary object of type 'Node' [-Waddress-of-temporary]
temp->setNext(&Node(data));
^~~~~~~~~~~
但是,某些编译器确实允许将其作为语言扩展。在这种情况下,这将创建一个 Node
类型的临时对象。临时变量的生命周期持续到完整表达式结束为止。 addressof 运算符应用于临时对象,结果是指向临时对象的指针。完整表达式后,指针值将无效。
尝试通过无效指针访问其生命周期之外的临时对象将产生未定义的行为。
Why is the output of the second case so weird?
因为程序的行为未定义。
Node* _next;
void setNext(const Node* next) { _next = next; }
指向 const 的指针不能隐式转换为指向非 const 的指针。这也是不规范的。以下是随机选择的编译器的输出示例:
error: assigning to 'Node *' from incompatible type 'const Node *'
void setNext(const Node* next) { _next = next; }
^~~~
关于c++ - 创建新对象时使用 `new classObject` 和 `&classObject` 有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61272941/
下面是我的代码,其中我定义了两个类 Node 和 List 来执行您认为它们执行的操作。在扩展列表时,我需要创建一个新的 Node 对象(请参阅代码中带有注释的行)。如果我使用 new Node(da
我原以为计数是 3,但结果是 0。我已经连续编码了 9 个小时,所以也许我已经盯着这个看太久了。 我对 Swift 的理解可能有一个漏洞。任何帮助表示赞赏。 struct Service { en
我正在尝试使用 android native 代码用我的自定义方法替换 android 系统调用,通过谷歌搜索我发现了一些博客,但在尝试给定代码时我遇到了错误。 通过关注博客 我正在使用此 blog
我需要给我的公共(public)成员(member)打电话。采用 1 个参数的构造函数。 这是我的代码的样子://主要 char tmpArray[100] = {}; while ( !inFile
我正在使用 Python 3.1,并且我想创建一个游戏。我做了一个class Board(Canvas):为什么?因为我需要通过“标签”来跟踪这些片段。但是,当我尝试将标签绑定(bind)到一 blo
我想了解 Class.forName("ClassName") 和 ClassObject.getClass返回类的运行时实例。那么为什么在比较从两次获取中获得的结果类对象时我们得到一个 boolea
我有一个 Blazor 项目,在 Startup.cs 中我添加了一个服务 public void ConfigureServices(IServiceCollection servi
我是一名优秀的程序员,十分优秀!