- 论坛徽章:
- 0
|
一段很普通的代码:
#include <iostream>
using namespace std;
class Example
{
public:
Example()
{
}
Example(char *name,char *address)
{
cout<<"loading construct"<<endl;
strcpy(Example::name,name);
}
Example(Example &temp)
{
cout<<"loading copy construct"<<endl;
strcpy(Example::name,temp.name);
cin.get();
}
~Example()
{
cout<<"loading Destruct";
cin.get();
}
protected:
char name[20];
char address[20];
};
Example tp()
{
Example b("China","USA");
return b;
}
int main()
{
Example a;
a = tp();
return 0;
} |
G++出错:
main.cpp:47: error: no matching function for call to `Example::Example(Example)'
main.cpp:24: note: candidates are: Example::Example(Example&)
VC 不出错
我search了这个问题,没有什么信服的解释,只有个人帖子其中提到不要再return语言中使用构造函数,我不得其解。
[ 本帖最后由 smartvessel 于 2009-12-1 16:14 编辑 ] |
|