gpt4 book ai didi

c++ - 是否可以从输入流中读取 'throw away' 值?

转载 作者:太空狗 更新时间:2023-10-29 19:38:29 25 4
gpt4 key购买 nike

我用列中的数据处理一些数据,例如,

1 -0.004002415458937208 0.0035676328502415523
2 -0.004002415796209478 0.0035676331876702957
....

我只对最后两个值感兴趣。我通常发现读取这些值很方便:

std::ifstream file(file_name);
double a, b;
for (lines) {
// | throwing away the first value by reading it to `a`
file >> a >> a >> b;
store(a, b);
}

我不确定这对其他人来说可读性如何,并且当数据结构未知时它可能被认为是错误。 我能否以某种方式让它看起来更明确,我真的想丢弃第一个读取值?

我想要类似这样的东西,但没有任何效果:

file >> double() >> a >> b; // I hoped I could create some r-value kind of thing and discard the data in there
file >> NULL >> a >> b;

最佳答案

如果您不想显式创建一个要被忽略的变量,并且您觉得通过调用操作流来显式忽略该值太冗长,您可以利用 operator>> 为采用 std::istream&(*)(std::istream&) 函数指针的 std::istream 重载:

template <typename CharT>
std::basic_istream<CharT>& ignore(std::basic_istream<CharT>& in){
std::string ignoredValue;
return in >> ignoredValue;
}

像这样使用:

std::cin >> ignore >> a >> b;

如果你想验证它是一种可以读入类型的形式,你可以提供一个额外的模板参数来指定被忽略值的类型:

// default arguments to allow use of ignore without explicit type
template <typename T = std::string, typename CharT = char>
std::basic_istream<CharT>& ignore(std::basic_istream<CharT>& in){
T ignoredValue;
return in >> ignoredValue;
}

像这样使用:

std::cin >> ignore >> a >> b;
// and
std::cin >> ignore<int> >> a >> b;

demo on coliru

关于c++ - 是否可以从输入流中读取 'throw away' 值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41045236/

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