VB.NET是否优化了字符串文字的连接?

前端之家收集整理的这篇文章主要介绍了VB.NET是否优化了字符串文字的连接?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
类似于 this的问题,但是对于VB.NET而言,自从我了解到这是一种语言的事情.

例如,编译器会知道要翻译

Dim s As String = “test ” + “this ” +
“function”

Dim s As String = "test this function"

从而避免了字符串连接的性能

是.它是.我只测试VS 2008,但我强烈怀疑以前的版本也是如此.

VB.NET

Public Class Class1


    Dim s As String = "test " + "this " + "function"

    Public Function test() As String
        Return s
    End Function

End Class

I.L. – 注意字符串“test this function”

{
    .maxstack 8
    L_0000: ldarg.0 
    L_0001: call instance void [mscorlib]System.Object::.ctor()
    L_0006: nop 
    L_0007: ldarg.0 
    L_0008: ldstr "test this function"
    L_000d: stfld string ClassLibrary1.Class1::s
    L_0012: nop 
    L_0013: ret 
}
原文链接:https://www.f2er.com/vb/255149.html

猜你在找的VB相关文章