D:\Qt\Qt5.2.1\Tools\QtCreator\bin\day5\main.cpp:139: error: ISO C++ forbids declaration of 'Student' with no type [-fpermissive] Student(string n,int m):mentor_name(n),wages(m){} ^
时间: 2024-04-27 11:22:52 浏览: 153
QT-in-windows.zip_HTTP_QT5_Qt http下载文件_Qt5.2.1_qt http
这个错误的含义是:在main.cpp文件的第139行,声明了一个名为Student的变量或函数,但是没有指定其类型。这可能是因为在使用Student之前没有正确地包含它的头文件或类定义。解决方法是确保在使用Student之前正确地包含它的头文件或类定义,并且在类定义中指定Student的类型。另外,编译器可能会提示你添加“-fpermissive”标志来允许这种类型的声明,但这并不是推荐的解决方法,因为它可能会导致其他问题。
阅读全文