手揣网教程/应用软件/内容

PB代码优化(2)

应用软件2024-09-15 阅读
[摘要]第二种情况: IF NOT condition THEN //Code goes here.END IF和IF condition THEN //No code goes her...
第二种情况:

IF NOT condition THEN

      //Code goes here.

END IF

IF condition THEN

      //No code goes here.

ELSE

      //Code goes here.

END IF

 

对于上一种方式,条件表达式返回false并且再进行一个运算,才执行下面的代码。这样相对于下面一种书写方式可能多执行了一个运算。如果大家有什么疑问,您不妨测试一下下面这个例子:

 

//小测试:其中的判断条件只是为了表示一下,实际情况可能更复杂。

 

long i                   //计数器

long ll_start          //执行开始时间

long ll_used1       //方式一耗时

long ll_used2       //方式二耗时

 

//方式一

ll_start = Cpu()

for i = 1 to 900000

      if not (1 > 1) Then

             i = i

      end if

next        

ll_used1 = Cpu() - ll_start



全新的路由器不仅让你更稳定快速地连接无线网络,更可以让家中的智能设备连接在一起。

……

相关阅读