gpt4 book ai didi

c++ - 如何像在python中一样将字符的 'n'拷贝写入ostream

转载 作者:IT王子 更新时间:2023-10-28 23:27:56 26 4
gpt4 key购买 nike

在 python 中,以下指令:print 'a'*5 将输出 aaaaa。如何在 C++ 中结合 std::ostream 编写类似的东西以避免 for 构造?

最佳答案

显而易见的方法是使用 fill_n:

std::fill_n(std::ostream_iterator<char>(std::cout), 5, 'a');

另一种可能性是只构造一个字符串:

std::cout << std::string(5, 'a');

关于c++ - 如何像在python中一样将字符的 'n'拷贝写入ostream,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11421632/

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