会话对象实际上包含什么?
session=request.getsession(true);
System.out.println(session)
上面代码的输出是什么,请解释输出中的内容
session=request.getsession(true);
System.out.println(session)
What will be the output of the above code please explain those things in the output
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
session 的 toString() 方法将被调用并被打印。
session's
toString()
method will get called and that will be printed.