gpt4 book ai didi

java - 为什么我不断收到此错误 "error: unexpected type"

转载 作者:行者123 更新时间:2023-11-30 07:33:08 25 4
gpt4 key购买 nike

编译此代码时出现同样的错误。我想知道如何成功添加租赁天数和租赁费率。请帮忙。

 Tractor.java:83: error: unexpected type
RentalDays + RentalRate = RentalProfit;
^
required: variable
found value
1 error

代码:

 import java.util.*;

public class Tractor
{
private String name;
private int VehicleID;
private int RentalRate;
private int RentalDays;


public int setRentalRate(int RentalRate)
{
if (RentalRate <= 0 || RentalRate > 100000)
{
return -1;
}
else
{
return this.RentalRate;

}
}

public int getRentalRate()
{
return this.RentalRate;
}

public int setRentalDays(int RentalDays)
{
if (RentalDays <= 0 || RentalDays > 365)
{
return -1;
}
else
{
return this.RentalDays;

}
}

public int getRentalDays()
{
return this.RentalRate;
}

public int RentalProfit(int RentalRate, int RentalDays)
{
int RentalProfit;

RentalDays + RentalRate = RentalProfit;
}

}

最佳答案

只需编写代码即可添加。

public int RentalProfit(int RentalRate, int RentalDays)
{
return RentalDays + RentalRate;
}

RentalDays + RentalRate = RentalProfit; 无效,因为 = 运算符的左侧大小应该是要分配的变量,而不是相加的结果。
您的意思是 RentalProfit = RentalDays + RentalRate; 吗?

关于java - 为什么我不断收到此错误 "error: unexpected type",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35787688/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com