struts2 Action方法传值的一个小问题
我在Action里有两个方法,publicclassLoginActionextendsActionSupport{intid=0;method1(){id=1;}met...
我在Action里有两个方法,
public class LoginAction extends ActionSupport {
int id=0;
method1(){
id=1;
}
method2){
System.out.println(id);//打印出来为0
}
}
我用get set 方法 也行不通啊 这个问题感觉很奇怪, 请高手帮帮忙 看还有其它的方法吗??
那怎么能得到id呢 因为 有很多程序 不能直接在method2里调用method1不然会出错 展开
public class LoginAction extends ActionSupport {
int id=0;
method1(){
id=1;
}
method2){
System.out.println(id);//打印出来为0
}
}
我用get set 方法 也行不通啊 这个问题感觉很奇怪, 请高手帮帮忙 看还有其它的方法吗??
那怎么能得到id呢 因为 有很多程序 不能直接在method2里调用method1不然会出错 展开
5个回答
展开全部
method2(){
method1();
System.out.println(id);//打印出来为1
}
method1();
System.out.println(id);//打印出来为1
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
说明值没有正确给id附上,应该加上getter/setter方法,还有可能和你页面设置有关以及配置文件
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在id前加上this试试。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
当然是0了,你以为是多少
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询