5

今天刚开始学习java,似乎无法弄清楚这一点。我正在学习 learnjavaonline.org 上的教程,它教你一些东西,然后要求你编写代码来做特定的事情,然后检查输出以查看其是否正确。问题是,如果它不正确,它不会说明原因,或者给你一个正确代码的例子。

它希望我使用所有原语输出一个字符串“H3110 w0r1d 2.0 true”

我想出了这个

public class Main {
public static void main(String[] args) {
    char h = 'H';
    byte three = 3;
    short one = 1;
    boolean t = true;
    double ten = 10;
    float two = (float) 2.0;
    long won = 1;
    int zero = 0;

    String output = h + three + one + ten + " " + "w" + zero + "r" + won + "d " + two + " " + t;
    System.out.println(output);
}

}

但它输出86.0 w0r1d 2.0 true

我怎样才能使它不添加所有整数,而是连续显示它们?

4

7 回答 7

6

这条线的问题:

String output = h + three + one + ten + " " + "w" + zero + "r" + won + "d " + two + " " + t;

是操作是从左到右执行的,所以它首先求和h + three(计算结果为 an int),然后one再求和ten。到目前为止,您有一个数值 (an int),然后将“相加”到 a String。尝试这样的事情:

String output = "" + h + three + one + ten + " " + "w" + zero + "r" + won + "d " + two + " " + t;

在第二种情况下,您的表达式将从一个String对象开始,将其余操作评估为Strings。

您当然可以""在开头使用或任何其他评估为 的值String,例如String.valueOf(h). 在最后一种情况下,您不需要使用String.valueOf()其他操作数,因为第一个操作数已经是字符串。

于 2013-08-04T10:38:56.317 回答
2

一个简单而丑陋的方法是使用String.valueOf每个数值。

如:

String output = h + String.valueOf(three); // + etc...

编辑

morgano的方法也完全有效 - 为此 +1。

在更一般的主题上,您可能希望将对象String.concat用于String连接,甚至更好StringBuilder

SO 页面包含许多您可以在此问题上使用的信息。

于 2013-08-04T10:38:56.693 回答
2

您可以使用包装类的 toString 或 valueOf 方法将您的数字转换为字符串(猜想您还没有),或者只是将所有原语填充到打印行中而不使用 String output.

system.out.println(h + three + one + ten + " " + "w" + zero + "r" + won + "d " + two + " " + t);

您需要寻找的只是 printline 语句中有一个字符串。这意味着如果您只想打印我们可以使用的基于数字的数据类型system.out.println("" + youNumberVariable)

还可以选择在输出声明的开头添加一个空字符串,output = "" + theRest;以强制所有后续值进入字符串,就像它在 printline 语句中所做的那样。

其中大部分不是非常漂亮的编码,但对于学习过程来说完全足够了。

于 2013-08-04T10:43:32.210 回答
0

在添加之前,我会使用 String.valueOf 将每个数值显式转换为 String 。像这样:

String output = h + String.valueOf( three ) + String.valueOf( one ) + String.valueOf( ten ) + " " + "w" + String.valueOf( zero ) + "r" + String.valueOf( won ) + "d " + String.valueOf( two ) + " " + t;
于 2013-08-04T10:40:38.777 回答
0

诀窍是让编译器将其解释+为字符串连接(然后默默地将数字转换为字符串),而不是添加两个数字。这意味着 to 的两个参数之一+必须是字符串,而不是 - 作为前三个参数 - 数字(是的,char 是数字)。

在野外的代码中,不希望数字直接相邻,但在它们之间有一个空格,例如:

String output = h + " " + three + " " + one + " " + ten + " " + "w" + zero + "r" + won + "d " + two + " " + t;

如果你真的不想有空格,那么让第一个参数为空字符串:

String output = "" + h ....

您也可以将 h 从 char 更改为 String。

于 2013-08-04T11:04:18.110 回答
0

您得到的结果是,本质上,您是在依赖隐式转换时在打印数值变量之前对它们进行算术运算。

甚至 Char 也是一个数字!H 在 ascii 表中的值为 72,因此您基本上是在指示 Java 程序打印以下结果:72 + 3 + 1 + 10.0(等于 86.0)

像这样混合输入数字和符号的字符串连接可能会出现问题,因为隐式转换正在发挥作用。为了确保东西是你想要的,而不使用显式转换,可以在每个数值之间使用任一字符串,如下所示:

    char h = 'H';  // This is a numeral! Capital H has value 72 in Ascii table
    byte three = 3;
    short one = 1;
    boolean t = true; // not a numeral
    double ten = 10;
    float two = (float) 2.0;
    long lOne = 1;
    int zero = 0;

    System.out.println(h + "" + three + "" + one + "" + (int) ten + " w"  
        + zero + "r" + lOne + "d " + two + " " + t );

请注意我需要如何ten转换为 int 类型,以丢失小数...

然而,上面的例子并不是使用字符串连接的好例子!对于一个适当的解决方案,这可能更针对有更多经验的人,是尝试使用字符串格式,如下所示:

System.out.println(String.format("%s%s%s%s w%sr%sd %s %s", h, three, one,
    (int) ten, zero, lOne, two, t));

另一种方法是使用这样的消息格式,这可能不是此分配的最佳选择,因为浮点数将打印为整数。还需要导入java.text.MessageFormat

// please note: the double and the float won't print decimals!
// note: import java.text.MessageFormat for this
System.out.println(MessageFormat.format("{0}{1}{2}{3} w{4}r{5}d {6} {7}", h,
    three, one, (int) ten, zero, lOne, two, t));

Ascii 表中的更多示例。

于 2019-05-20T13:50:33.657 回答
-2
public class Main {
    public static void main(String[] args) {

       int b = 3110;
       int d = 0;
       String e = "orld";
       double f = 2;
       boolean g = true;
       System.out.println("H" + b + " " + "w" + d + e + " " + f + " " + g);
    }
}
于 2016-08-07T00:54:14.677 回答