<tfoot id='2T7J9'></tfoot>

        • <bdo id='2T7J9'></bdo><ul id='2T7J9'></ul>

      1. <i id='2T7J9'><tr id='2T7J9'><dt id='2T7J9'><q id='2T7J9'><span id='2T7J9'><b id='2T7J9'><form id='2T7J9'><ins id='2T7J9'></ins><ul id='2T7J9'></ul><sub id='2T7J9'></sub></form><legend id='2T7J9'></legend><bdo id='2T7J9'><pre id='2T7J9'><center id='2T7J9'></center></pre></bdo></b><th id='2T7J9'></th></span></q></dt></tr></i><div id='2T7J9'><tfoot id='2T7J9'></tfoot><dl id='2T7J9'><fieldset id='2T7J9'></fieldset></dl></div>
        <legend id='2T7J9'><style id='2T7J9'><dir id='2T7J9'><q id='2T7J9'></q></dir></style></legend>

        <small id='2T7J9'></small><noframes id='2T7J9'>

      2. 如何在 Java 中使用占位符进行字符串格式化(如在

        时间:2023-09-29

              <tbody id='ByPSd'></tbody>
          1. <legend id='ByPSd'><style id='ByPSd'><dir id='ByPSd'><q id='ByPSd'></q></dir></style></legend>
              <bdo id='ByPSd'></bdo><ul id='ByPSd'></ul>
              1. <small id='ByPSd'></small><noframes id='ByPSd'>

              2. <i id='ByPSd'><tr id='ByPSd'><dt id='ByPSd'><q id='ByPSd'><span id='ByPSd'><b id='ByPSd'><form id='ByPSd'><ins id='ByPSd'></ins><ul id='ByPSd'></ul><sub id='ByPSd'></sub></form><legend id='ByPSd'></legend><bdo id='ByPSd'><pre id='ByPSd'><center id='ByPSd'></center></pre></bdo></b><th id='ByPSd'></th></span></q></dt></tr></i><div id='ByPSd'><tfoot id='ByPSd'></tfoot><dl id='ByPSd'><fieldset id='ByPSd'></fieldset></dl></div>

                <tfoot id='ByPSd'></tfoot>

                  本文介绍了如何在 Java 中使用占位符进行字符串格式化(如在 Python 中)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我是 Java 新手,来自 Python.在 Python 中,我们像这样进行字符串格式化:

                  I am new to Java and am from Python. In Python we do string formatting like this:

                  >>> x = 4
                  >>> y = 5
                  >>> print("{0} + {1} = {2}".format(x, y, x + y))
                  4 + 5 = 9
                  >>> print("{} {}".format(x,y))
                  4 5
                  

                  如何在 Java 中复制相同的东西?

                  How do I replicate the same thing in Java?

                  推荐答案

                  MessageFormat 类看起来像你所追求的.

                  The MessageFormat class looks like what you're after.

                  System.out.println(MessageFormat.format("{0} + {1} = {2}", x, y, x + y));
                  

                  这篇关于如何在 Java 中使用占位符进行字符串格式化(如在 Python 中)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何格式化字符串数字以在 android Edit Field 中使用 下一篇:如何知道现在时间是否在两个小时之间?

                  相关文章

                  最新文章

                  <tfoot id='lxQ9n'></tfoot>
                • <small id='lxQ9n'></small><noframes id='lxQ9n'>

                    <i id='lxQ9n'><tr id='lxQ9n'><dt id='lxQ9n'><q id='lxQ9n'><span id='lxQ9n'><b id='lxQ9n'><form id='lxQ9n'><ins id='lxQ9n'></ins><ul id='lxQ9n'></ul><sub id='lxQ9n'></sub></form><legend id='lxQ9n'></legend><bdo id='lxQ9n'><pre id='lxQ9n'><center id='lxQ9n'></center></pre></bdo></b><th id='lxQ9n'></th></span></q></dt></tr></i><div id='lxQ9n'><tfoot id='lxQ9n'></tfoot><dl id='lxQ9n'><fieldset id='lxQ9n'></fieldset></dl></div>
                    • <bdo id='lxQ9n'></bdo><ul id='lxQ9n'></ul>

                    <legend id='lxQ9n'><style id='lxQ9n'><dir id='lxQ9n'><q id='lxQ9n'></q></dir></style></legend>