本月博客排行
-
第1名
龙儿筝 -
第2名
johnsmith9th -
第3名
wy_19921005 - zysnba
- sgqt
- lemonhandsome
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- benladeng5225
- wy_19921005
- fantaxy025025
- qepwqnp
- e_e
- 解宜然
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- gaojingsong
- wiseboyloves
- xiangjie88
- ranbuijj
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- jh108020
- lemonhandsome
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- lzyfn123
- zhanjia
- forestqqqq
- johnsmith9th
- ajinn
- nychen2000
- wjianwei666
- hanbaohong
- daizj
- 喧嚣求静
- silverend
- mwhgJava
- kingwell.leng
- lchb139128
- lich0079
- kristy_yy
最新文章列表
Math.round方法
Math.round()
java.lang.Math类有两个round()方法,定义如下:
public static int round(float);
public static long round(double);
它们都返回整数,且采用四舍五入进行运算,运算规则如下:
(1).如果参数为正数,小数点后采用四四舍五入,如果小数点后面>=0.5则整数部分加1,否则舍弃小数点后面的 ...
Math对象的api
简单记录一下Math对象的一些基础api
具体资料可以查看http://www.w3school.com.cn/js/jsref_obj_math.asp
如果你不知道w3shool。噢。。。。
Math.abs(x)
----------返回数的绝对值
Math.abs("a"); //NaN
Math.abs(1); ...
AS3中一些不太常见的代码写法
1
mc.gotoAndPlay(Math.random()*10>>0);
// Math.random()*10:取10以内带小数的随机数
// >> 是移位符号,>>0 的功能去除小数点后的数
// Math.random()*10>>0 意思是获取10以内的随机整数
// 发散应用:
// 用在加载进度条中:
// trace(已经加载的字节数 ...