Java 中的对象声明检查
我的代码片段:
if (answer) {
TourRequest tour = new TourRequest();
}
在上述语句之后,我想声明游览对象,如果尚未在大括号内声明它,则使用不同的构造函数。
如何在不使用答案变量的内容的情况下直接检查游览是否存在?
My code snippet:
if (answer) {
TourRequest tour = new TourRequest();
}
After the above statement, I want to declare tour object, using a different constructor if it hasn't already been declared inside the curly brackets.
How can I check directly if tour exist, without using the content of the answer variable?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 if 语句之外声明变量,然后检查它是否为 null。
更好的是,只需使用 else 即可。
Declare the variable outside of the if statement and then check if it is null.
Better yet, just use an else.
简化的解决方案在这里
the simplified solution is here