istream::operator>> 的精确机制串起来

发布于 2024-10-31 00:39:39 字数 269 浏览 1 评论 0原文

我只是没有看到这一点:

std::istringstream stream(somestring);

string temp;
stream >> temp;

在最后一行中,调用的确切函数是什么?我在 cplusplus.com 上的列表中找不到它。谢谢!

I'm just not seeing this:

std::istringstream stream(somestring);

string temp;
stream >> temp;

In the last line, what is the exact function called? I can't find it in the list on cplusplus.com. Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

假装不在乎 2024-11-07 00:39:40

如果没记错的话,它是一个非成员函数重载——有一个类似于以下的签名:(

std::istream &operator>>(std::istream &is, std::string &s);

目前我忽略了 istreamstring 都是实际上是模板实例化的 typedef)。

If memory serves, it's a non-member function overload -- have a signature something like:

std::istream &operator>>(std::istream &is, std::string &s);

(For the moment I've left out the fact that both istream and string are really typedefs of template instantiations).

素衣风尘叹 2024-11-07 00:39:40

您的意思是 istream&运算符>> (istream&is, string&str);?

(在 cplusplus.com 上)

Do you mean istream& operator>> (istream& is, string& str);?

(on cplusplus.com)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文