为了账号安全,请及时绑定邮箱和手机立即绑定

尽管在函数内更改了输入,但函数返回输入不变

尽管在函数内更改了输入,但函数返回输入不变

动漫人物 2022-07-20 20:23:35
就以下代码而言,我遇到了一个问题,即一切都运行良好,但我没有得到所需的输出。代码应该接受用户输入并打印它,但所有字母的大小写都颠倒了。然而,即使在将输入返回到 toggleStringCase 后,toggleCase 正常工作,它也会恢复到它被发送到 toggleCase 之前的状态。我无法理解为什么会发生这种情况。有人可以指出我正确的方向。理想情况下,我不希望你告诉我答案,而只是帮助我以正确的方式解决这个问题。package loopy;import java.io.*;public class loopy {    public static void main (String[] args) throws IOException {        // TODO: Use a loop to print every upper case letter        for (int i = 65; i < 91; i++) {            System.out.println((char)i);        }        // TODO: Get input from user. Print the same input back but with cases swapped. Use the helper functions below.         BufferedReader in = new BufferedReader(new InputStreamReader(System.in));        String input = in.readLine();        in.close();             toggleStringCase(input);        BufferedWriter out = new BufferedWriter(new OutputStreamWriter(System.out));        out.write(input);        out.close();    }    //Takes a single Character and reverse the case if it is a letter    private static char toggleCase(char c) {        int asciiValue = (int) c;        if (asciiValue > 96 && asciiValue < 123){            asciiValue = asciiValue - 32;        }        else if (asciiValue > 64 && asciiValue < 91){            asciiValue = asciiValue + 32;        }        else {        }        c = (char) asciiValue;        return c;    }    // Splits a string into individual characters that are sent to toggleCase to have their case changed    private static String toggleStringCase(String str) {        String reversedCase = new String();        for (int i = 0; i < str.length(); i++) {            char letter = str.charAt(i);            toggleCase(letter);            reversedCase = reversedCase + letter;        }        str = reversedCase;        return str;    }}
查看完整描述

2 回答

?
白板的微信

TA贡献1883条经验 获得超3个赞

toggleStringCase(input);

我想你可能想得到那个函数的输出。您似乎假设输入将被更改 - 事实并非如此。请参阅Java 是“按引用传递”还是“按值传递”?


查看完整回答
反对 回复 2022-07-20
?
慕田峪4524236

TA贡献1875条经验 获得超5个赞

Java中的参数是按值传递的。您不能以这种方式更改传递给方法的值。但是,您正在返回您想要的值 - 只需将其分配回您的变量:

input = toggleStringCase(input);


查看完整回答
反对 回复 2022-07-20
  • 2 回答
  • 0 关注
  • 56 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信