gpt4 book ai didi

java - 比较在 Java 中不起作用的字符串

转载 作者:行者123 更新时间:2023-12-01 22:19:21 25 4
gpt4 key购买 nike

我正在从文件导入一个字符串,该字符串是“Computer_Made”。但是,如果我执行此代码,它不会打印“计算机已制成!”有什么想法吗?

if (data=="Computer_Made")
{
computer=true;
System.out.println("The computer is already made!");
}

最佳答案

您应该使用 .equals 进行字符串比较!!

if (data.equals("Computer_Made"))
{
computer=true;
System.out.println("The computer is already made!");
}

Refer here for more info

关于java - 比较在 Java 中不起作用的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30249446/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com