黑马程序员技术交流社区
标题:
内部类访问外部类字段的问题
[打印本页]
作者:
邓超军
时间:
2012-10-20 21:01
标题:
内部类访问外部类字段的问题
class MyClass
{
public static int x = 6;
class Inner
{
public void Show()
{
Console.WriteLine(x);//为什么x被static修饰,这里才能访问?
}
}
}
复制代码
作者:
颜晋南
时间:
2012-10-20 21:14
一般来说,类中标注了static的函数与变量能在类外直接引用,比如说: String M_string1 =CompanyEmployee.GetCompanyName(M_string2) 而没有标注static的函数则必须声明一个类的实体,有实体来引用。比如说: static class CompanyEmployee { public string GetCompanyName(string name) { ... } //没有Static public static string GetCompanyAddress(string address) { ... } } CompanyEmployee M_CompE = new CompanyEmployee() String M_string1 =M_CompE.GetCompanyName(M_string2)
作者:
许庭洲
时间:
2012-10-20 21:20
1. 在非static方法中可以调用static成员;
2. 在static方法中可以调用其他static成员,但是不能调用非static成员。
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2