0

我正在尝试使用 Raspberry Pi 的正常运行时间秒数进行计算。我需要得到小时和分钟。我用

upSeconds = `/usr/bin/cut -d. -f1 /proc/uptime`

现在要获得秒数,我必须计算小时和分钟,我如何使用 Ruby 计算,从 Objective CI 知道它应该可以使用,/, *, +, -但我该如何使用它?

4

1 回答 1

1

我从未使用过 ObjC,但可能操作符完全相同:

upSeconds = `/usr/bin/cut -d. -f1 /proc/uptime`

seconds = upSeconds.chomp.to_i # remove "\n" at the end and pass to int (ms lost)
hours = seconds / (60*60)
minutes = (seconds - (hours * 60 * 60)) / 60
于 2013-06-06T19:58:57.917 回答