creating classes link error

后端 未结 2 921
不知归路
不知归路 2021-01-25 09:13

I\'m using Dev-C++ 5.2.0.1

I took an example of how to put a class in another file from a website but it resulted in an error.

In the file class.h I have:

<
相关标签:
2条回答
  • 2021-01-25 09:33

    New answer.

    Are you compiling and linking all of your files together? In gcc you would do something like:

    gcc -o myExe class.cpp main.cpp
    

    I'm not so sure about dev-c++, but I imagine it's not much different.

    0 讨论(0)
  • 2021-01-25 09:54

    foo() only have definition. If you want to use a function that doesn't have a implement, Linker will give you this error "undefined reference".

    0 讨论(0)
提交回复
热议问题