gpt4 book ai didi

c++ - istream::operator>>( const char& ) as no such function 是如何实现的?

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

查看 istream documentation ,你会看到没有函数 istream &operator>>( char& ) 的实现。 ,但是如果您编译并运行下面的代码,它将按预期工作。

#include<iostream>

int main( ) {

char c;

std::cin >> c;

std::cout << c << std::endl;

return( 0 );

}

给定cin是 istream 类的对象,operator>> 的特化叫做什么时候std::cin >> c;执行了吗?

最佳答案

operator>> 也实现为 non-member functions .

istream& operator>> (istream& is, char& c)

关于c++ - istream::operator>>( const char& ) as no such function 是如何实现的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18404015/

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