if else语句使用布尔运算符返回null

时间:2014-11-10 17:41:00

标签: java if-statement boolean boolean-logic

这是我第一次提出问题,所以我不确定我的标题是否正确,因为我对java很新...基本上我的程序在changeNameFormat方法中返回所有null如果名称中没有空格,但我希望它打印出来#34;你的名字中没有空格"然后转到下一个方法。目前我的代码如下,至少在逻辑上对我来说是有道理的,但我不是专家。

import java.util.*;

public class Lab11 {

    static String name, first, last, word;
    static boolean space;

    public static void main(String [] args) {
        Scanner input = new Scanner(System.in);
        System.out.println("Input your name: ");
        name = input.nextLine();
        changeNameFormat();
        if (space = true) {
            System.out.println("Your name is : " + first + " " + last);
            System.out.println("Your first name is : " + first);
            System.out.println("Your last name is : " + last);
        }
        else {
            System.out.println("Your name contains no spaces");
        }
        System.out.println("Input word for palindrome test: ");
        word = input.nextLine();
        if (palindrome(word)) {
            System.out.println(word + " is a palindrome");
        }
        else {
            System.out.println(word + " is NOT a palindrome");
        }
    }

    public static void changeNameFormat() {
        if (name.contains(" ")) {
            String [] split = name.split(" ", 2);
            first = split[0];
            String last = split[1];
            space = true;
        }
        else {
            space = false;
        }
    }

    public static boolean palindrome(String w) {
        System.out.println("Checking if " + word + " is a palindrome.");
        System.out.println("... Loading...");
        String reverse = "";
        for (int i = w.length() - 1 ; i >= 0 ; i--) {
            reverse = reverse + w.charAt(i);
        }
        if (w.equalsIgnoreCase(reverse)) { // case insensitive check
            return true;
        }
        else {
            return false;
        }
    }
}

1 个答案:

答案 0 :(得分:4)

疏忽造成的一个非常小的错误。

您使用了一个等号赋值运算符(=),它将true赋给space。如果要检查space是否为true,则需要double equals比较运算符(==):

if (space == true)

请注意,更好,更惯用的写作方式是:

if (space)

此外,ChangeNameFormat()方法会对last变量进行本地化,以防您没有注意到。