gpt4 book ai didi

c++ - 在 C++ TDD 中调用重载 const 与非 const 方法的好方法?

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

全部

用迭代器写了一些奇特的容器。所以我有

iterator begin() {
}

iterator end() {
}

const_iterator begin() const {
}

const_iterator end() const {
}

在测试中,我实例化容器,填充它并测试它。调用 const 和非 const 版本的可接受/好的方法是什么?比如说,像这样的简单测试

TEST( c.end() - c.begin() == c.size() );

应该为迭代器和 const 迭代器运行。常量引用?一些丑陋的 Actor ?

最佳答案

我只想对它做一个 const&:

const container& constC= c;
TEST(constC.end() - constC.begin() == constC.size());

关于c++ - 在 C++ TDD 中调用重载 const 与非 const 方法的好方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38648998/

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