gpt4 book ai didi

c++ - 为什么空格在 Linux 中的管道中丢失?

转载 作者:太空宇宙 更新时间:2023-11-04 15:44:44 25 4
gpt4 key购买 nike

我对 Linux 中的管道有疑问。看起来空格字符在管道后丢失了。运行以下 C++ 代码

#include <iostream>
#include <stdio.h>
#include <string.h>

using namespace std;

int main(){
char s[] = "ab cd", c;
int n = strlen(s);
for(int i = 0; i<n && (cin >> c); i++)
if(s[i] != c){
printf("wrong at %d : '%c' != '%c' \n", i, s[i], c);
break;
}
return 0;
}

来自

echo "ab cd" | ./checker

shell 命令给出

wrong at 2 : ' ' != 'c'

这是正常行为吗?如何避免在管道中丢失字符?

最佳答案

问题不在于管道,问题在于跳过空格的 cin >> c

如果你执行 cin >> noskipws >> c 就可以了

或者类似这样的东西:

std::string q;
getline(cin, q);

for(i = 0; i < n && i < q.size(); i++)
{
if (q[i] != s[i])
...
}

关于c++ - 为什么空格在 Linux 中的管道中丢失?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18412868/

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