标签:style blog class code color c
1
2
3
4
5
6
7
8
9
10
11
12 |
class
Student { private
string _name; public
int Age = 0; public
static void Test() { Student stu = new
Student(); <span style= "color: rgb(255, 0, 0);" ><strong>stu._name = "dd" ;</strong></span> stu.Age = 20; } } |
如图,虽然Static修饰的方法不属于类本身,但是还是在private(本类)范围内,所以可以访问到类的私有变量。
小鱼提问3 static方法中可以访问某个类的私有变量吗(不通过反射的其他非正常手段)?什么情况下可以?,布布扣,bubuko.com
小鱼提问3 static方法中可以访问某个类的私有变量吗(不通过反射的其他非正常手段)?什么情况下可以?
标签:style blog class code color c
原文地址:http://www.cnblogs.com/wishFreedom/p/3718881.html