gpt4 book ai didi

java - 找不到符号错误(调用方法)

转载 作者:行者123 更新时间:2023-12-01 23:07:19 25 4
gpt4 key购买 nike

我遇到的错误是

Error:cannot find symbol
symbol: variable compareTo
location:variable tim of type Time

发生错误的代码是

public String difference(Time tim)
{
if(tim.compareTo==1)
{
tim.minute = 0;
}
//other code
}

我的compareTo

public int compareTo(Object other)
{
if (((Time)other).getHour()<hour)
{
return 1;
}
//and other code that repeat for return -1 and 0
}

最佳答案

调用 compareTo 方法的语法是错误的。如果没有括号 (),Java 会将其解释为类变量。尝试一下

if (compareTo(tim) == 1)

关于java - 找不到符号错误(调用方法),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22571085/

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