这期内容当中小编将会给大家带来有关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中怎么创建共享成员变量了,如果刚好有类似的疑惑,不妨参照上述分析进行理解。如果想知道更多相关知识,欢迎关注编程网行业资讯频道。