标题:关于静态上下文什么意思的问题
取消只看楼主
sunspirit
Rank: 1
等 级:新手上路
帖 子:41
专家分:0
注 册:2007-4-10
 问题点数:0 回复次数:1 
关于静态上下文什么意思的问题

public class Test{
public static void main(String [] args){
TheInterface a = new A();
TheInterface b = new B();
choose(a);
choose(b);
}

public static void choose(TheInterface x){//若这里不申明为 static 则error为无法从静态上下文中引用
//非静态方法 ?? 我不明白是什么意思..
x.print();
}
}


interface TheInterface{
void print();
}

class A implements TheInterface{
public void print(){
System.out.println("this is A");
}
}

class B implements TheInterface{
public void print(){
System.out.println("this is B");
}
}

搜索更多相关主题的帖子: 静态上下文 void TheInterface public 
2007-04-18 11:05
sunspirit
Rank: 1
等 级:新手上路
帖 子:41
专家分:0
注 册:2007-4-10
得分:0 

哦~原来是这样
public class Test{
public static void main(String [] args){
TheInterface a = new A();
TheInterface b = new B();
a.print();
b.print() ; }
}
那这样就应当没有问题吧

谢谢斑竹 也谢谢楼主...哈哈

2007-04-18 13:28



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-132804-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.061569 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved