首页 > 文档 > hour()小时
2017
08-01

hour()小时

Name

hour()小时

   

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 hour() function returns the current hour as a value from 0 – 23.

处理与计算机上的时钟进行通信。小时 () 函数将当前小时作为值从 0-23 返回。

Syntax

hour()

Returns

int

Related

millis()
second()
minute()
day()
month()
year()



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

留下一个回复

你的email不会被公开。