gpt4 book ai didi

c++ - 如何返回空字符引用

转载 作者:行者123 更新时间:2023-11-30 01:58:08 62 4
gpt4 key购买 nike

如何返回空值?我创建了一个设置为 null 的本地字符...但是是否有不同的方法来返回 null 左值?

char& String::operator[](int index) {
char s = NULL;
if (index > length) {
cout << "Incorect index. Enter an index 0 through (String length -1)." <<endl;
return s; // how do i return null value...this is local...
}
else {
}
}

最佳答案

您可以返回 '\0'。这可能接近您的意图。

关于c++ - 如何返回空字符引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17842972/

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