回 帖 发 新 帖 刷新版面

主题:vb语法

Dim toppings As String = ""
If CheckBox1.Checked = True Then
    toppings &= "Cheese "
End If
If CheckBox2.Checked = True Then
    toppings &= "Peppers "
End If
If CheckBox3.Checked = True Then
    toppings &= "Mushrooms"
End If
If toppings <> "" Then
    MsgBox("Your pizza has the following toppings: " & toppings)
End If
请问&=是什么意思?能这样写toppings &= "Cheese "吗?

回复列表 (共1个回复)

沙发

你那是VB.net的语法,不是VB6.0的。
toppings &= "Cheese "相当于toppings=toppings & "Cheese"

如果你学过C语言应该就知道复合赋值运算符。

我来回复

您尚未登录,请登录后再回复。点此登录或注册