在 C++ 中使用 void 函数
本文将演示有关如何在 C++ 中使用 void
函数的多种方法。
使用 void
函数查找更长的字符串
没有返回值的函数将 void
类型指定为返回参数。在 void
函数中,隐式的 return
语句在函数体的最后一条语句之后调用。注意,可以将显式的 return
语句放置在 void
函数主体中,在该主体中,控制流需要立即移至调用方函数。在下面的示例中,isLessString
函数包含将条件字符串打印到控制台的唯一条件语句,并在其后执行隐式 return
。
#include <iostream>
#include <algorithm>
#include <iterator>
#include <map>
using std::cout; using std::endl;
using std::string; using std::map;
using std::vector;
void isLessString(string &s1, string &s2)
{
s1.size() < s2.size() ?
cout << "string_1 is shorter than string_2" << endl:
cout << "string_2 is shorter than string_1" << endl;
}
int main() {
string str1 = "This string has arbitrary contents";
string str2 = "Another string with random contents";
isLessString(str1, str2);
return EXIT_SUCCESS;
}
输出:
string_1 is shorter than string_2
使用 void
函数查找 map 中是否存在键
在这种情况下,void
函数可用于实现 std::map
容器的关键字搜索功能。注意,通过将相应的字符串常量打印到 cout
流来传达结果。尽管这不是在程序内部传递数据的首选方法,但可将其用于指示信息给最终用户。
#include <iostream>
#include <algorithm>
#include <iterator>
#include <map>
using std::cout; using std::endl;
using std::string; using std::map;
using std::vector;
void keyExistsInMap(map<string, string> &m, const string& key)
{
m.find(key) != m.end() ?
cout << "Key exists in a map" << endl :
cout << "Key does not exist in a map" << endl;
}
int main() {
map<string, string> veggy_map = {{"a", "Ali",},
{"m", "Malvo",},
{"p", "Pontiac",},
{"s", "Sensi",}};
keyExistsInMap(veggy_map, "s");
keyExistsInMap(veggy_map, "x");
return EXIT_SUCCESS;
}
输出:
Key exists in a map
Key does not exist in a map
使用 void
函数对向量中的元素进行排序
或者,可以为 std::sort
算法实现包装函数,该包装函数以 vector
对象为参考,并以升序对元素进行排序。请注意,void
函数通常缺乏将故障传达给调用者函数的方法,因此在设计解决方案时应始终考虑这一点。
#include <iostream>
#include <algorithm>
#include <iterator>
#include <map>
using std::cout; using std::endl;
using std::string; using std::map;
using std::vector;
void sortVector(vector<string> &vec)
{
std::sort(vec.begin(), vec.end(),
[] (const auto &x, const auto &y) {return x < y;});
}
int main() {
vector<string> arr = { "element", "implementation", "or", "the",
"execution", "dependent", "template", "character",
"that", "all", "via", "class" };
sortVector(arr);
for (const auto &item : arr) {
cout << item << "; ";
}
cout << endl;
return EXIT_SUCCESS;
}
输出:
all; character; class; dependent; element; execution; implementation; or; template; that; the; via;
相关文章
在 C++ 中通过掷骰子生成随机值
发布时间:2023/04/09 浏览次数:169 分类:C++
-
本文解释了如何使用时间因子方法和模拟 C++ 中的掷骰子的任意数方法生成随机数。了解它是如何工作的以及它包含哪些缺点。提供了一个 C++ 程序来演示伪数生成器。
在 C++ 中使用模板的链表
发布时间:2023/04/09 浏览次数:158 分类:C++
-
本文解释了使用模板在 C++ 中创建链表所涉及的各个步骤。工作程序演示了一个链表,该链表使用模板来避免在创建新变量时声明数据类型的需要。
在 C++ 中添加定时延迟
发布时间:2023/04/09 浏览次数:142 分类:C++
-
本教程将为你提供有关在 C++ 程序中添加定时延迟的简要指南。这可以使用 C++ 库为我们提供的一些函数以多种方式完成。
在 C++ 中创建查找表
发布时间:2023/04/09 浏览次数:155 分类:C++
-
本文重点介绍如何创建查找表及其在不同场景中的用途。提供了三个代码示例以使理解更容易,并附有代码片段以详细了解代码。
如何在 C++ 中把字符串转换为小写
发布时间:2023/04/09 浏览次数:63 分类:C++
-
介绍了如何将 C++ std::string 转换为小写的方法。当我们在考虑 C++ 中的字符串转换方法时,首先要问自己的是我的输入字符串有什么样的编码
如何在 C++ 中确定一个字符串是否是数字
发布时间:2023/04/09 浏览次数:163 分类:C++
-
本文介绍了如何检查给定的 C++ 字符串是否是数字。在我们深入研究之前,需要注意的是,以下方法只与单字节字符串和十进制整数兼容。
如何在 c++ 中查找字符串中的子字符串
发布时间:2023/04/09 浏览次数:65 分类:C++
-
本文介绍了在 C++ 中检查一个字符串是否包含子字符串的多种方法。使用 find 方法在 C++ 中查找字符串中的子字符串
如何在 C++ 中把字符串转换为 Char 数组
发布时间:2023/04/09 浏览次数:107 分类:C++
-
本文介绍了在 C++ 中把字符串转换为 char 数组的多种方法。使用 std::basic_string::c_str 方法将字符串转换为 char 数组