header.h
namespace VectorMath { static FVector Make(float X,float Y,float Z); }
file.cpp
namespace VectorMath { static FVector Make(float X,float Z) { FVector ret; ret.X = X; ret.Y = Y; ret.Z = Z; return ret; } }
1>c:\program files (x86)\microsoft visual studio 10.0\vc\include\xstring(541): error C2129: static function ‘FVector VectorMath::Make(float,float,float)’ declared but not defined
1> c:\programming****\vectormath.h(19) : see declaration of ‘VectorMath::Make’
错误指向xstring(标准字符串库的一部分)第541行,它似乎与任何东西都没有任何关系.
解决方法
您需要删除静态,否则该函数将在不同的编译单元中不可见.只是用
namespace VectorMath { FVector Make(float X,float Z); }
同样的定义.
如果这不能解决您的链接问题,您需要确保实际编译并正确链接file.cpp,但静态肯定是错误的.
关于您发现问题的注释,在使用内联函数时,您无法将声明与定义分开:是,这与生成的方法符号及其可见性具有类似的效果.我觉得奇怪的是你要求这个作为接受答案的先决条件,尽管你从未在你的问题中提到内联.我怎么会知道你只是添加了你不太懂的随机关键词?这不是帮助您解决问题的其他人的良好基础.您需要发布真实的代码并对我们诚实.如果将来提出更多问题,请记住这一点.