建立一个工程,里面有三个文件hello.hpp、hello.cpp、main.cpp // hello.hpp #ifndef HELLO_HPP #define HELLO_HPP class Hello { public: void show() const; }; #endif ==================== // hello.cpp #include "hello.hpp" #include usin...