gpt4 book ai didi

c++ - 返回 boolean 函数

转载 作者:行者123 更新时间:2023-11-30 02:32:06 25 4
gpt4 key购买 nike

我希望使 contains Element 函数返回 true 或 false,但它根本不返回任何内容。非常感谢任何帮助!

bool Set::containsElement(int x) const
{
int element = false;

for (int i = 0; i < _numItems; i++) {
if (_items[i] == x)
element = true;
}
return element;
}

// main.cpp

#include <iostream>
#include <cassert>
#include "Set.h"
using namespace std;

int main() {

Set s1, s2, s3;

s1.addElement(7);
s1.addElement(3);
s1.addElement(5);

s1.containsElement(3);

return 0;
}

最佳答案

当你调用 main 中的函数时,你是在无处调用它,所以调用时值会丢失

关于c++ - 返回 boolean 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36805888/

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