使用类和类的模板进行简单的分配,已在此处搜索,似乎没有解决方案可以解决问题。当我尝试编译时,会出现这种情况:
1>MSVCRTD.lib(crtexe.obj) : error LNK2019: unresolved external symbol _main referenced in function ___tmainCRTStartup 1>c:\users\leanne\documents\visual studio 2010\Projects\PartC\Debug\PartC.exe : fatal error LNK1120: 1 unresolved externals
使用空项目创建控制台项目。任何人都可以帮我找到问题吗? 这是我的代码:
#include <iostream>
using namespace std;
template<typename ItemType>
class Vec3
{
ItemType x, y ,z;
public:
Vec3<ItemType>(){x=0;y=0;z=0;}
Vec3<ItemType>(const Vec3<ItemType>& other);
Vec3<ItemType> operator+(Vec3<ItemType>);
Vec3<ItemType> operator-(Vec3<ItemType>);
bool operator==(Vec3<ItemType> other);
Vec3<ItemType> operator=(Vec3<ItemType>);
~Vec3<ItemType>(){;}
};
template<typename ItemType>
Vec3<ItemType> Vec3<ItemType>::operator+(Vec3<ItemType> other)
{
Vec3 temp;
temp.x = x + other.x;
temp.y = y + other.y;
temp.z = z + other.z;
return temp;
}
template<typename ItemType>
bool Vec3<ItemType>::operator==(Vec3<ItemType> other)
{
if(x != other.x)
return false;
if(y != other.y)
return false;
if(z != other.z)
return false;
return true;
}
template<typename ItemType>
Vec3<ItemType> Vec3<ItemType>::operator-(Vec3<ItemType> other)
{
Vec3 temp;
temp.x = x - other.x;
temp.y = y - other.y;
temp.z = z - other.z;
return temp;
}
template<typename ItemType>
Vec3<ItemType> Vec3<ItemType>::operator=(Vec3<ItemType> other)
{
x = other.x;
y = other.y;
z = other.z;
return *this;
}
template<typename ItemType>
Vec3<ItemType>::Vec3(const Vec3<ItemType>& other)
{
x = other.x;
y = other.y;
z= other.z;
}
template<typename ItemType>
int main()
{
Vec3<int> v1;
Vec3<int> v2(v1);
Vec3<double> v3 = v2;
v3 = v1+v2;
v3 = v1-v2;
if(v1==v2)
{
return 0;
}
return 0;
}
答案 0 :(得分:1)
您收到错误是因为您将main
作为模板:
template<typename ItemType>
int main()
请删除template<typename ItemType>
。 main
不允许成为模板。
删除后,Vec3<double> v3 = v2;
会出现错误,因为v2
为Vec3<int>
,无法转换为Vec3<double>
。