"class":非法使用此类型作为表达式 如何解决?

'class': illegal use of this type as an expression how do I fix it?

本文关键字:何解决 解决 表达式 非法 class 类型      更新时间:2023-10-16

尝试编译我的程序时,出现以下错误

1>c:\用户\danilo\桌面\lab2\project1\project1\main.cpp(11(:错误 C2275:"战斗机":非法使用此类型作为表达式 1>c:\users\danilo\desktop\lab2\project1\project1\fighter.h(9(:注:参见"Fighter"声明 1>c:\用户\danilo\桌面\lab2\项目1\项目1\main.cpp(11(:错误 C2146:语法错误:标识符"f1"之前缺少"(" 1>c:\用户\danilo\桌面\lab2\project1\project1\main.cpp(12(:错误 C2059:语法错误:"}" 1>c:\用户\danilo\桌面\lab2\项目1\项目1\main.cpp(12(:错误 C2143:语法错误:在"}"之前缺少";">

我的主文件如下所示:

#include "Fighter.h"
#include "Spell.h"
#include "Player.h"
#include "Wizard.h"
#include "Collection.h"
int lastID = 0;
int main{
Fighter f1;
f1("A", 100, 100);
}; 

我的战斗机看起来像这样

#define FIGHTER_H
#include "Card.h"
#include <string>
#include <iostream>
using namespace std;
class Fighter : public Card {
int power;
public:
virtual string getCategory() const override {
return "FIGHTER";
}
int getPower() const {
return power;
}
Fighter(string Name_, int neededEnergy_, int power_) : Card(Name_, neededEnergy_), power(power_) {}
void operator>(const Fighter& f) const {
if (this->getPower() > f.getPower()) {
cout << this->getName() << " is stronger " << endl;
}
else {
cout << f.getName() << " is stronger " << endl;
};
}
virtual void write(ostream& it) const override {
it << "(power: " << getPower() << ")";
}
};

#endif FIGHTER_H

这里有什么问题?

您的main函数缺少括号。这

int main{

应该是

int main(){

此外,f1("A", 100, 100)不是构造函数调用,而是对operator()的调用,而您没有。请改为执行以下操作:

Fighter f1("A", 100, 100);

此外,请确保您的防护装置保持一致。缺少一个#ifndef FIGHTER_H