這篇文章將為大家詳細講解有關(guān)VB.NET中有哪些特殊操作符,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。
我們擁有10余年網(wǎng)頁設(shè)計和網(wǎng)站建設(shè)經(jīng)驗,從網(wǎng)站策劃到網(wǎng)站制作,我們的網(wǎng)頁設(shè)計師為您提供的解決方案。為企業(yè)提供成都網(wǎng)站建設(shè)、成都做網(wǎng)站、微信開發(fā)、微信小程序開發(fā)、手機網(wǎng)站制作設(shè)計、H5網(wǎng)站設(shè)計、等業(yè)務(wù)。無論您有什么樣的網(wǎng)站設(shè)計或者設(shè)計方案要求,我們都將富于創(chuàng)造性的提供專業(yè)設(shè)計服務(wù)并滿足您的需求。
VB.NET特殊操作符的小例子如下:
Dim a As New dog
Dim b As New dog
Dim c As Type
c = a.GetType
MsgBox(c.ToString)
If TypeOf (a) Is vb1.
Form7.dog ThenMsgBox(True)
End If
'vb1.Form7+dog
'True
就說這么多吧。已有在應(yīng)用中如果在總結(jié)出什么好的經(jīng)驗,再慢慢補充。
任何一門語言都提供了豐富的操作符,vb也不例外。操作符一般分為:算術(shù)運算符,賦值運算符,比較運算符,邏輯運算符,以及VB.NET特殊操作符。本文只以幾個小例子來介紹其中一些比較重要的應(yīng)用。
在本文中將會用到一個自定義類 dog ,代碼如下:
Public Class dogClass dog
Private s_name As String
Private s_color As Color
Private s_age As Integer
Public Sub New()Sub New()
s_name = "塞北的雪"
s_age = 22
s_color = System.Drawing.Color.Red
End Sub
Public Property Name()Property
Name() As StringGet
Return s_name
End Get
Set(ByVal value As String)
s_name = value
End Set
End Property
Public Property Color()Property
Color() As ColorGet
Return s_color
End Get
Set(ByVal value As Color)
s_color = value
End Set
End Property
Public Property Age()Property
Age() As IntegerGet
Return s_age
End Get
Set(ByVal value As Integer)
s_age = value
End Set
End Property
Public Shared Operator +(ByVal a
As dog, ByVal b As dog)Dim c As New dog
c.Name = a.Name + b.Name
c.Age = a.Age + b.Age
c.Color = Color.FromArgb((a.Color.
ToArgb + b.Color.ToArgb) / 2)Return c
End Operator
End Class
關(guān)于VB.NET中有哪些特殊操作符就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。