gpt4 book ai didi

c++ - 在 C++ 中使用 'this' 是一种好习惯吗?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:06:33 26 4
gpt4 key购买 nike

我想知道在 C++ 中使用“this”是否是一种好的做法。起初我以为我应该是因为这样你就可以清楚地表明你所指的是当前类的成员,但有时你会以这样的代码结尾:

Document::Document(QWidget *parent) : QWidget(parent)
{
this->file = 0;
this->layout = new QGridLayout(this);
this->layout->setSpacing(2);
this->layout->setMargin(0);
this->setLayout(this.layout);
this->textArea = new QTextEdit(this);
this->textArea->setLineWrapMode(QTextEdit::NoWrap);
this->textArea->setAcceptDrops(true);
this->textArea->setAcceptRichText(true);
this->textArea->setUndoRedoEnabled(true);
this->textArea->setFont(QFont("Mono" , 11));
this->layout->addWidget(this->textArea);
this->textArea->show();
this->textArea->setFocus();
}

我认为没有所有“this”会看起来好很多,特别是当它像 this->layout->addWidget(this.textArea); 那样使用时。而且我认为代码在大多数情况下应该使用相同的样式以使其更易于阅读,所以我应该在必要时使用“this”还是使用它来明确您引用的是一个好习惯同一类的成员。

最佳答案

对此没有唯一的答案。这取决于上下文,也取决于你问的是谁。

有些人一直使用this。有些人从不使用它。有些人改为使用特殊前缀重命名所有成员变量(mFile 而不是 file)。

我更愿意只在需要避免歧义时才使用 this 前缀。

在编写良好的代码中,您指的是局部变量还是成员变量通常很明显,因此 this 并没有做太多事情。但有时读者可能很难确定变量是否是类成员。那么 this 是澄清的好方法。

关于c++ - 在 C++ 中使用 'this' 是一种好习惯吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10310242/

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