LNK1120: 1 unresolved externals and LNK2019: unresolved external symbol

前端 未结 3 523
北海茫月
北海茫月 2021-01-23 12:56

I\'ve been getting these two errors and I cant seem to find a solution that works.

LNK1120: 1 unresolved externals

Error 1 error LNK2019: unresolve

3条回答
  •  清歌不尽
    2021-01-23 13:06

    Did you implement the Vector3D default constructor, copy constructor, and destructor? You showed your headers but not the implementation files. The linker complains about a missing defintion of Vector3D::Vector3D(Vector3D const&).

提交回复
热议问题