Math.min() Math.max()

Math.min()取参数中最小的,Math.max()取参数中最大的

top=Math.min(top, topMax);

等价于

if(top>topMax)

{

  top=topMax;

}

posted @ 2017-11-14 14:14  theshine  阅读(262)  评论(0编辑  收藏  举报