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()该如何实现才能得到想要的结果?
展开
 我来答
samplezuo
推荐于2016-04-29 · TA获得超过320个赞
知道小有建树答主
回答量:452
采纳率:100%
帮助的人:257万
展开全部
你要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();
}
}
更多追问追答
追问
我的意思是在不改变Caller类的写法的情况下,Executor能否知道谁在调用自己?
追答
void execute(Object caller){

这里的caller不就是调用者么?
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式