当我将以下内容键入独立行时:
std::endl;
我收到以下错误:
statement cannot resolve address for overloaded function
为什么?我不能把std::endl;
写成独立的一行吗?
感谢。
答案 0 :(得分:16)
std::endl
是一个功能模板。通常,它用作插入运算符<<
的参数。在这种情况下,所讨论的流的operator<<
将被定义为例如ostream& operator<< ( ostream& (*f)( ostream& ) )
。定义了f
的参数类型,因此编译器将知道函数的确切重载。
它与此相当:
void f( int ){}
void f( double ) {}
void g( int ) {}
template<typename T> void ft(T){}
int main(){
f; // ambiguous
g; // unambiguous
ft; // function template of unknown type...
}
但您可以通过某些类型的提示来解决歧义:
void takes_f_int( void (*f)(int) ){}
takes_f_int( f ); // will resolve to f(int) because of `takes_f_int` signature
(void (*)(int)) f; // selects the right f explicitly
(void (*)(int)) ft; // selects the right ft explicitly
这是std::endl
作为operator <<
的参数提供时通常会发生的事情:函数的定义
typedef (ostream& (*f)( ostream& ) ostream_function;
ostream& operator<<( ostream&, ostream_function )
这将使编译器在提供给例如std::endl
时选择正确的重载。 std::cout << std::endl;
。
好问题!
答案 1 :(得分:3)
我能想到的最可能的原因是它的声明是:
ostream& endl ( ostream& os );
换句话说,如果不是<<
操作的一部分,则无法推断出os
。我很确定这是因为这一行:
std::endl (std::cout);
编译得很好。
我的问题是:你为什么想要这样做?
我知道7;
在C中是完全有效的陈述,但你没有看到那种垃圾污染我的代码: - )
答案 2 :(得分:3)
std::endl
是一个功能模板。如果您在无法唯一确定模板参数的上下文中使用它,则必须消除您所指的特定化的歧义。例如,您可以使用显式强制转换或将其分配给正确类型的变量。
e.g。
#include <ostream>
int main()
{
// This statement has no effect:
static_cast<std::ostream&(*)(std::ostream&)>( std::endl );
std::ostream&(*fp)(std::ostream&) = std::endl;
}
通常,您只需在自动推导出模板参数的上下文中使用它。
#include <iostream>
#include <ostream>
int main()
{
std::cout << std::endl;
std::endl( std::cout );
}
答案 3 :(得分:2)
endl是一个带参数的函数。见std::endl on cplusplus.com
// This works.
std::endl(std::cout);
答案 4 :(得分:2)
http://www.cplusplus.com/reference/iostream/manipulators/endl/
您不能拥有std::endl
,因为它需要basic_ostream
作为参数类型。这是它的定义方式。
当函数定义为my_func()
时,尝试调用void my_func(int n)
答案 5 :(得分:2)
std :: endl是一个操纵者。它实际上是一个由&lt;&lt;&lt;&lt;&lt;&lt;&lt;运营商在流上。
std::cout << std::endl
// would call
std::endl(std::cout).
答案 6 :(得分:1)
std::endl
终止一行并刷新缓冲区。因此它应该像cout
或类似的那样连接流。
答案 7 :(得分:-1)
#include<iostream>
#include<conio.h>
#include<string.h>
using namespace std;
class student{
private:
string coursecode;
int number,total;
public:
void getcourse(void);
void getnumber(void);
void show(void);
};
void student ::getcourse(){
cout<<"pleas enter the course code\n";
cin>>coursecode;
}
void student::getnumber(){
cout<<"pleas enter the number \n";
cin>>number;
}
void student::show(){
cout<<"coursecode is\t\t"<<coursecode<<"\t\t and number is "<<number<<"\n";
}
int main()
{
student s;
s.getcourse();
s.getnumber();
s.show();
system("pause");
}