error LNK2019: 无法解析的外部符号 "void __cdecl fun(int,int,class X<int,int>)"
//Test1.cpp:定义控制台应用程序的入口点。//#include"stdafx.h"#include<iostream>usingnamespacestd;tem...
// Test1.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include<iostream>
using namespace std;
template<class T1,class T2>
class X
{
private:
T1 a;
T2 b;
public:
friend void fun(T1 a,T2 b,X<T1,T2> x);
};
template<class T1,class T2>
void fun(T1 a,T2 b,X<T1,T2> x)
{
x.a = a;x.b = b;
}
void main()
{
X<int,int>x;
fun(3,7,x);
} 展开
//
#include "stdafx.h"
#include<iostream>
using namespace std;
template<class T1,class T2>
class X
{
private:
T1 a;
T2 b;
public:
friend void fun(T1 a,T2 b,X<T1,T2> x);
};
template<class T1,class T2>
void fun(T1 a,T2 b,X<T1,T2> x)
{
x.a = a;x.b = b;
}
void main()
{
X<int,int>x;
fun(3,7,x);
} 展开
3个回答
展开全部
先解释你原来为何错。
#include<iostream>
using namespace std;
template<class T1,class T2>
class X
{
private:
T1 a;
T2 b;
public:
friend void fun(T1 a,T2 b,X<T1,T2> x);//你一定没想到这个fun函数被声明为非模板函数,所以它实际上跟你下面定义的那个函数没有半毛钱关系。
};
实际上,你想要调用的fun函数是个模板函数,所以你得先进行函数声明。另外,
template<class T1,class T2>
void fun(T1 a,T2 b,X<T1,T2> x)
{
x.a = a;x.b = b;
}
void main()
{
X<int,int> x;
fun(3,7,x);
//你这里并没有对运算结果进行输出,但你最好不要忘了fun函数对x对象没有任何影响,因为这是值传递。
}
template<class T1,class T2,class T3> void fun(T1 a,T2 b,T3 x);//先进行函数声明
template<class T1,class T2>
class X
{
private:
T1 a;
T2 b;
public:
friend void fun<>(T1 a,T2 b,X<T1,T2>& x);//这个fun才是模板函数fun。
};
template<class T1,class T2>
void fun(T1 a,T2 b,X<T1,T2>& x)//这样就是引用传递了,这使得你的fun函数是有意义的。
{
x.a = a;x.b = b;
}
2014-06-10
展开全部
塞的多音字
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2019-05-08
展开全部
#include<iostream>
using namespace std;
template<class T1,class T2>
class X
{
private:
T1 a;
T2 b;
public:
template<class T1, class T2>
friend void fun(T1 a,T2 b,X<T1,T2>& x);
};
template<class T1,class T2>
void fun(T1 a,T2 b,X<T1,T2>& x)
{
x.a = a;x.b = b;
}
void main()
{
X<int,int> x;
fun<int,int>(3,7,x);//这是个模板函数
}
using namespace std;
template<class T1,class T2>
class X
{
private:
T1 a;
T2 b;
public:
template<class T1, class T2>
friend void fun(T1 a,T2 b,X<T1,T2>& x);
};
template<class T1,class T2>
void fun(T1 a,T2 b,X<T1,T2>& x)
{
x.a = a;x.b = b;
}
void main()
{
X<int,int> x;
fun<int,int>(3,7,x);//这是个模板函数
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |