首页 > 文档 > month()月
2017
08-01

month()月

Name

month()

   

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 month() function returns the current month as a value from 1 – 12.

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

Syntax

month()

Returns

int

Related

millis()
second()
minute()
hour()
day()
year()



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

留下一个回复

你的email不会被公开。