C++で何かを書く必要があります。私は仮想関数に問題があります。仮想関数に関するC++の問題
Error 4 error C2371: 'Human::Age' : redefinition; different basic types c:\users\jan\desktop\testc\testc\human.cpp 5 1 TestC
Error 3 error C2556: 'Human Human::Age(void)' : overloaded function differs only by return type from 'int Human::Age(void)' c:\users\jan\desktop\testc\testc\human.cpp 5 1 TestC
Error 2 error C2628: 'Human' followed by 'int' is illegal (did you forget a ';'?) c:\users\jan\desktop\testc\testc\human.cpp 4 1 TestC
一般に、コンストラクタとデストラクタ(非抽象クラスなど)を持つクラスに仮想関数がある場合は、デストラクタを仮想として宣言することもできます。 –