gpt4 book ai didi

c++ - 如何在对象中使用 C++ 中的 "this"指针?

转载 作者:行者123 更新时间:2023-12-03 12:50:52 24 4
gpt4 key购买 nike

这是我的课,

#ifndef CARD_H
#define CARD_H

class Card
{
private:
int suit, value;
public:
Card (int, int);
int Compare (Card)const;
void print_card()const;
};

#endif

对于我的比较函数,我想比较两张牌的值,然后比较花色,如果目标牌更大,则返回 1;如果我要比较的牌更大,则返回 0。我该如何实现这个目标?

我的 Card 构造函数应该创建一张新卡,但我不允许在构造函数语句中使用“new”。如果是这种情况,我该如何创建新卡?

这是我尝试比较的:

int Card::Compare(Card c1) const
{

if ( c1 == NULL && this == NULL ) return 0;
else if ( c1 == NULL ) return -1;
else if ( this == NULL ) return 1;

else if ( c1.value > this.value ) return 1;
else if ( c1.value < this.value ) return -1;
else if ( c1.value == this.value )
{
if ( c1.suit > this.suit ) return 1;
if ( c1.suit < this.suit ) return -1;
}

最佳答案

在 C++ 中,this 指针是指向该类当前实例的指针。

因为它是一个指针,所以您必须将其视为指针:
this->member(*this).member

在C++中你只需要使用this指针就可以避免与方法参数的命名冲突。

我从未使用过 this 指针,因为我直接引用成员并故意在方法参数和成员变量之间使用不同的名称。

关于c++ - 如何在对象中使用 C++ 中的 "this"指针?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23231603/

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