首页 > 文档 > second()秒
2017
08-01

second()秒

Name

second()

   

Examples

void draw() {

background(204);

int s = second(); // Values from 0 – 59

int m = minute(); // Values from 0 – 59

int h = hour(); // Values from 0 – 23

line(s, 0, s, 33);

line(m, 33, m, 66);

line(h, 66, h, 100);

}

Description

Processing communicates with the clock on your computer. The second() function returns the current second as a value from 0 – 59.

处理与计算机上的时钟进行通信。第二个 () 函数将当前秒返回为 0-59 的值。

Syntax

second()

Returns

int

Related

millis()
minute()
hour()
day()
month()
year()



最后编辑:
作者:卡萨布兰卡
这个作者貌似有点懒,什么都没有留下。

留下一个回复

你的email不会被公开。