Java中的等字符串不相等

Java中的等字符串不相等

本文介绍了Java中的等字符串不相等(==)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨伙计们,为什么这个Java代码不能正常工作(if语句总是被读为False,任何输入都会输出4,包括Anish&Anish)?

Hi guys, why is this Java code not working correctly (the if statement is always being read as False, invariably giving an output of 4 for any input, including Anish & "Anish")?

import java.util.Scanner;
public class lkjlj {
    public static void main(String args []) {
        Scanner Pillai = new Scanner(System.in);
        System.out.println("Enter Your name");
        String nabeel = Pillai.nextLine();
        System.out.println(nabeel);
        if (nabeel == "Anish") {
            System.out.println("Your Age is 6");
        } else {
            System.out.println("Your age is 4");
        }
    }
}


推荐答案

你应该使用.equals进行字符串比较,而不是==。

You should use .equals for String comparisons, not ==.

这篇关于Java中的等字符串不相等(==)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-04 13:06