gpt4 book ai didi

c++ - 在 C++ 函数中接收双端队列或 vector 作为公共(public)参数

转载 作者:行者123 更新时间:2023-11-30 03:35:45 25 4
gpt4 key购买 nike

如何编写接收双端队列或 vector 并将内容打印到控制台的打印函数?

void print(generalparameter for deque and vector){
// print the content of the received deque/ vector.
}

最佳答案

您可以使用模板函数:

template<typename T>
void print(const T& container){
for(auto item : container) {
std::cout << item << ' ';
}
std::cout << std::endl;
}

关于c++ - 在 C++ 函数中接收双端队列或 vector 作为公共(public)参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41016595/

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