Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在更新一个.aspx.vb最初用动态类型变量编写的旧脚本,如下所示:
.aspx.vb
Dim price
我将它们更新为以下格式(以及一些IsDBNull补偿检查):
IsDBNull
Dim price As String
在对我的所有变量执行此操作后,脚本似乎运行得更快了。这是静态类型的真实效果,还是只是巧合?
是的,这是 VB 中首先存在该功能(Dim var As Type)的部分原因。