java中一个方法能否得到调用自己的对象
publicclassCaller{voidcall(){newExecutor().execute(this);}publicstaticvoidmain(String...
public class Caller {
void call(){
new Executor().execute(this);
}
public static void main(String[] args) {
new Caller().call();
}
}
class Executor {
void execute(Object caller){
System.out.println(whoCallMe()==caller);//true
}
}
whoCallMe()该如何实现才能得到想要的结果? 展开
void call(){
new Executor().execute(this);
}
public static void main(String[] args) {
new Caller().call();
}
}
class Executor {
void execute(Object caller){
System.out.println(whoCallMe()==caller);//true
}
}
whoCallMe()该如何实现才能得到想要的结果? 展开
1个回答
展开全部
你要2个相同的对象 这太不靠谱了吧
如果你非要这么搞 你可以这么定义
class Executor {
Object o;
public Executor ( Object o) {
this.o = o;
}
void execute(Object caller){
System.out.println(whoCallMe()==caller);//true
}
Object whoCallMe() {
return this.o;
}
}
public class Caller {
void call(){
new Executor(this).execute(this);
}
public static void main(String[] args) {
new Caller().call();
}
}
如果你非要这么搞 你可以这么定义
class Executor {
Object o;
public Executor ( Object o) {
this.o = o;
}
void execute(Object caller){
System.out.println(whoCallMe()==caller);//true
}
Object whoCallMe() {
return this.o;
}
}
public class Caller {
void call(){
new Executor(this).execute(this);
}
public static void main(String[] args) {
new Caller().call();
}
}
更多追问追答
追问
我的意思是在不改变Caller类的写法的情况下,Executor能否知道谁在调用自己?
追答
void execute(Object caller){
这里的caller不就是调用者么?
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询