VB.NET的推出,极大的吸引了编程人员的眼球。因为其特有的一些性质特点可以大大提高编程人员编程效率。我们应当在实践中积累经验加深对此的印象。在这里就先为大家介绍一下有关VB.NET共享成员变量的相关创建方法,方便大家理解。
在某些时候,可能需要在各个对象之间共享某个成员变量(当一个对象向变量赋值时,每个对象都可以看到相同的值),要创建VB.NET共享成员变量,只要在变量名前加shared关键字,例如
- module module1
- class student
- public name as string
- public shared
studentcount=0- public sub new(byval
name as string)- me.name=name
- studentcountstudentcount
=studentcount+1- end sub
- protected overrides
sub finalize()- studentcountstudentcount
=studentcount-1- end sub
- end class
- sub main()
- dim a = new student("hans")
- console.writeline
("student count{0}",
a.studentcount)- end sub
- end module
VB.NET共享成员变量的具体创建方法就为大家介绍到这里。
【编辑推荐】