gpt4 book ai didi

qt - 如何使用 QT 和 C++ 将字符串参数传递给函数

转载 作者:行者123 更新时间:2023-12-02 17:49:14 33 4
gpt4 key购买 nike

当我在下面的代码中调用 getCount 函数时,QT 4.7.3 编译器给出错误。构建错误

将“cont Person”传递为“int Person::getCount(const QString&)”的“this”参数会丢弃限定符

 bool Person::IsEligible(const QString& name)
{
int count = 0;
count = getCount(name);
}

int Person::getCount(const QString& name)
{
int k =0
return k;
}

最佳答案

该错误不是传递字符串参数的问题,而是您有一个 const 人,例如:

const Person p1;
Person p2;
p1.IsEligible("whatever"); //Error
p2.IsEligible("whatever"); //Fine because p2 isn't const

如果 IsEligible 意味着可以在 const Person 上调用,那么你可以说:

bool Person::IsEligible(const QString& name) const
{
int count = 0;
count = getCount(name);
}

(并更改您没有太明显地显示的相应声明),但我不能 100% 确定这就是您想要做的。

关于qt - 如何使用 QT 和 C++ 将字符串参数传递给函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10286401/

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