布尔变量 java,什么是声明在Java中布尔变量的正确方法?

博客探讨了在Java编程中是否需要预先初始化布尔变量`isMatch`的问题。作者指出,虽然初始化变量是一种常见做法,特别是在多种语言间切换时,以确保始终明确变量状态,但在该示例中,直接用`email1.equals(email2)`的结果赋值给`isMatch`也是可行的,不会影响代码运行。文章建议可以根据个人习惯和项目需求来决定是否初始化变量。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

I have just started learning Java. In the online course I am following, I am asked to try the following code:

String email1 = "meme@me.coh";

String email2 = "meme@me.com";

Boolean isMatch = false;

isMatch = email1.equals (email2);

if (isMatch == true){

System.out.println("Emails match");

}

else{

System.out.println("Emails don't match");

}

I don't understand why I'm asked to declare isMatch as false when on the next line i am comparing the email addresses and assigning the value to isMatch.

I've tried the following code which seems to work just the same:

String email1 = "meme@me.coh";

String email2 = "meme@me.com";

Boolean isMatch;

isMatch = email1.equals (email2);

if (isMatch == true){

System.out.println("Emails match");

}

else{

System.out.println("Emails don't match");

}

On the course it doesn't explain why I'm declaring isMatch as false first. Is there a reason why I must declare isMatch as false before comparing the email addresses?

解决方案

You don't have to, but some people like to explicitly initialize all variables (I do too). Especially those who program in a variety of languages, it's just easier to have the rule of always initializing your variables rather than deciding case-by-case/language-by-language.

For instance Java has default values for Boolean, int etc .. C on the other hand doesn't automatically give initial values, whatever happens to be in memory is what you end up with unless you assign a value explicitly yourself.

In your case above, as you discovered, the code works just as well without the initialization, esp since the variable is set in the next line which makes it appear particularly redundant. Sometimes you can combine both of those lines (declaration and initialization - as shown in some of the other posts) and get the best of both approaches, i.e., initialize the your variable with the result of the email1.equals (email2); operation.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值