0
How do I compare two variables of LocalTime
in Java? I can’t use the patterns.
import java.time.DayOfWeek;
import java.time.LocalTime;
public abstract class CorrespondenteBancario {
private DayOfWeek diasDeFuncionamento[];
private LocalTime horarioDeAbertura;
private LocalTime horarioDeFechamento;
public CorrespondenteBancario(DayOfWeek diasDeFuncionamento[], LocalTime abertura, LocalTime fechamento) {
LocalTime horarioAtual = LocalTime.now();
if (horarioAtual>abertura && horarioAtual<fechamento) {
...
}
}
public void depositar(double umValor, ContaBancaria umaConta) {
// TODO Auto-generated method stub
}
}
In which I am sending a three parameters to another class called CorrespondenteBancario
.