首页 > 文档 > day()天
2017
08-01

day()天

Name

day()

   

Examples

int d = day(); // Values from 1 – 31

int m = month(); // Values from 1 – 12

int y = year(); // 2003, 2004, 2005, etc.

 

String s = String.valueOf(d);

text(s, 10, 28);

s = String.valueOf(m);

text(s, 10, 56);

s = String.valueOf(y);

text(s, 10, 84);

Description

Processing communicates with the clock on your computer. The day() function returns the current day as a value from 1 – 31.

处理与计算机上的时钟进行通信。日 () 函数将当前日期返回为 1-31 的值。

Syntax

day()

Returns

int

Related

millis()
second()
minute()
hour()
month()
year()



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

留下一个回复

你的email不会被公开。