摘要:
字母日期或时间元素表示示例 G Era 标志符 Text AD y 年 Year 1996; 96 M 年中的月份 Month July; Jul;07 w 年中的周数 Number 27 W 月份中的周数 Number 2 D 年中的天数 Number 189 d 月份中的天数 Number 10 阅读全文
摘要:
System.out.println(Math.PI);//获取PI的值 System.out.println(Math.E);//常量E int min = Math.min(5, 4);//求最小值 System.out.println(min); int max = Math.max(5, 4 阅读全文
摘要:
public class MyEnum { private final String name; public static final MyEnum red = new MyEnum("红色"); public static final MyEnum green = new MyEnum("绿色" 阅读全文