package 枚举;
//向枚举添加自定义属性
enum Apple
{
AURORA(10),BELMAC(12),CORTLAND(15),EMPIRE(8),GRAVENSTEIN(11);
private int price;
//构造方法
Apple(int price)
{
this.price = price;
}
int getPrice()...
分类:
移动开发 时间:
2014-11-11 22:53:48
阅读次数:
247
body { width: 100%; height: 100% }
function aurora(){
alert( document.body.clientHeight );
var canvas = document.getElementById( "sky" );...
分类:
其他好文 时间:
2014-07-26 02:07:46
阅读次数:
219