我想从孩子的引用变量中访问父母的成员函数。
我的代码:
class Emp
{
static String Cname="Google";
int salary ;
String Name;
void get(String s1,int s2)
{
Name=s1;
salary=s2;
}
void show()
{
System.out.println(Name);
System.out.println(salary);
System.out.println(Cname);
}
}
public class Practice extends Emp{
/**
* @param args
*/
void show()
{
System.out.println("in Child class");
}
public static void main(String[] args) {
// TODO Auto-generated method stub
Practice e=new Practice();
e.show();
e.get("Ratan",200000);
((Emp)e).show();
}
}
输出是:
in Child class
in Child class
这意味着两次调用孩子的成员函数。解决这个问题的方法是什么?