with 语句
时间:2007-12-27 来源:不详 作者:林子
为语句设定默认对象。 dedecms.com
with (object)
statements
本文来自织梦
参数
object 内容来自dedecms
新的默认对象。
本文来自织梦
statements
dedecms.com
一个或多个语句,object 是该语句的默认对象。 织梦好,好织梦
说明
with 语句通常用来缩短特定情形下必须写的代码量。在下面的例子中,请注重 Math 的重复使用:
织梦内容管理系统
x = Math.cos(3 * Math.PI) Math.sin(Math.LN10)
y = Math.tan(14 * Math.E)
织梦好,好织梦
当使用 with 语句时,代码变得更短且更易读: 本文来自织梦
with (Math){
x = cos(3 * PI) sin (LN10)
y = tan(14 * E)
}
织梦内容管理系统
要求
版本 1 织梦好,好织梦
请参阅
this 语句
织梦好,好织梦
文章评论
共有位Admini5网友发表了评论 查看完整内容