gpt4 book ai didi

c++ - 为什么我不能在 const 参数函数/方法中传递 const 对象?

转载 作者:行者123 更新时间:2023-11-30 00:59:16 25 4
gpt4 key购买 nike

编辑:

抱歉,我正在尝试理解一个代码示例,它使用 QList::indexOf 方法,声明为 here .

实际上我想弄清楚为什么我需要在这种特定情况下使用 const_cast:

int ProjTreeItem::row() const
{
if (parentItem) {
// instance of const object to test
const ProjTreeItem *item = new ProjTreeItem(QList<QVariant>(), NULL);
// Called indexOf here to test
parentItem->childItems.indexOf(item);
// This works fine
return parentItem->childItems.indexOf(const_cast<ProjTreeItem*>(this));
}
return 0;
}

编辑 2:

我看错了地方,然后我开始怀疑问题与模板和 const 修饰符的使用有关。我找到了这个线程 here .请查看 Jon 的回答,我认为这澄清了我的观点。对于我的问题的误导,我们深表歉意。

最佳答案

我想你想要这个:

void SomeClass::f(const MyClass*) const
{ ... }

关于c++ - 为什么我不能在 const 参数函数/方法中传递 const 对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4731203/

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