VB 性能优化点

1.将Single,Double和Currency类型的变量替换为Integer或Long类型的变量;10倍

2.避免使用变体:

慢:Dim FSO as object     Set FSO = New Scripting.FileSystemObject

快:Dim FSO as New FileSystemObject

3.值处理时使用变量而不使用属性,尤其是在循环中;20倍

慢:Text1.Text = Text1.Text & vbcrlf & SomeVar(intCon) 

快:sOutput = sOutput & vbCrlf & SomeVar(intCon)     Text1.Text = sOutput

4.尽量使用数组替代集合;100倍

5.展开小的循环体;

6.不使用很短的函数;

7.使用With:

With frmMain.Text1 

.Text = "Learn VB" 

.Alignment = 0 

.Tag = "Its my life" 

.BackColor = vbBlack 

.ForeColor = vbWhite 

End With 

只适用于需要对一个对象的子对象进行操作的时候,下面这

段代码是不正确的:

With Text1 

.Text = "Learn VB" 

.Alignment = 0 

.Tag = "Its my life" 

.BackColor = vbBlack 

.ForeColor = vbWhite 

End With

8.检查字符串是否为空:

慢:If Text1.Text = "" then

快:If Len(Text1.Text) = 0 then

9.使用动态数组,而不是静态数组,节约资源;

10.销毁对象:Dim FSO as New FileSystemObject   Set FSO = Nothing;

11.使用对象数组;

12.使用Move方法:

慢:

Image1.Width = 100 

Image1.Height = 100 

Image1.Top = 0 

Image1.Left = 0 

 快:

Image1.Move 0,0,100,100

 

 

 

 

 

转载于:https://www.cnblogs.com/wzs2016/p/7814385.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值