0
Sum of times
how can get sum multiple times in for loop? ex: Time time1 = “08:00:00”; Time time; //time and time 1 are java.sql.Time for(int i=0;i<30;i++){ time += time1.gettime(); }
3 Antworten
+ 1
hamid In that case you don't want to use Time object, because it represents real time, hence maximum value can be 23:59:59. If you add one more second to that you will receive 00:00:00. Use integers to count working hours.
0
Why do you want to sum times? It's pointless. It's like, what will be a sum of 1st of July 1985 and 23 of March 2020? A complete nonsense.
If you want to increment time, you can use LocalTime object and plusHours() or plus(duration) methods.
0
i want to know how many times i was in work in month.
so i need to sum all times.