<blockquote><p>在 Java 中,可以使用 printf 方法输出对齐,通过格式说明符控制格式和对齐方式,具体包括:左对齐在带符号数字前加符号0 用零填充空位< 右对齐> 左对齐并用空格填充空位^ 居中对齐</p></blockquote>
<p><img src="https://img.php.cn/upload/article/202404/21/2024042102282239814.jpg" alt="java怎么输出对齐" ></p>
<p><strong>如何在 Java 中输出对齐</strong></p>
<p>在 Java 中,我们可以使用 <code>printf</code> 方法来输出对齐。<code>printf</code> 方法提供了多种格式说明符,可以控制输出的格式和对齐方式。</p>
<p><strong>语法:</strong></p>
<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><code class="java">printf(String format, Object... args);</code></pre><div class="contentsignin">登录后复制</div></div>
<p><strong>参数:</strong></p>
<ul>
<li>
<code>format</code>: 格式化字符串,其中包含占位符(例如 <code>%d</code>、<code>%s</code>)。</li>
<li>
<code>args</code>: 要输出的实际参数。</li>
</ul>
<p><strong>对齐说明符:</strong></p>
<table>
<thead><tr>
<th>说明符</th>
<th>描述</th>
</tr></thead>
<tbody>
<tr>
<td><code>-</code></td>
<td>左对齐</td>
</tr>
<tr>
<td><code> </code></td>
<td>在带符号的数字前加符号</td>
</tr>
<tr>
<td><code>0</code></td>
<td>用零填充空位</td>
</tr>
<tr>
<td><code><</code></td><td>右对齐</td></tr><tr><td><code>></code></td>
<td>左对齐,并用空格填充空位</td>
</tr>
<tr>
<td><code>^</code></td>
<td>居中对齐</td>
</tr>
</tbody>
</table>
<p><strong>示例:</strong></p>
<p>要将整数 <code>123</code> 右对齐并用空格填充空位,可以这样写:</p>
<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><code class="java">System.out.printf("%10d", 123);</code></pre><div class="contentsignin">登录后复制</div></div>
<p>这将输出:</p>
<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><code> 123</code></pre><div class="contentsignin">登录后复制</div></div>
<p>要将浮点数 <code>123.45</code> 居中对齐并保留两位小数,可以这样写:</p>
<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><code class="java">System.out.printf("%12.2f", 123.45);</code></pre><div class="contentsignin">登录后复制</div></div>
<p>这将输出:</p>
<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><code> 123.45</code></pre><div class="contentsignin">登录后复制</div></div>
<p>要将字符串 "Hello" 左对齐并用星号填充空位,可以这样写:</p>
<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><code class="java">System.out.printf("%-20s", "Hello");</code></pre><div class="contentsignin">登录后复制</div></div>
<p>这将输出:</p>
<div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><code>Hello****************</code></pre><div class="contentsignin">登录后复制</div></div>
以上是java怎么输出对齐的详细内容。更多信息请关注PHP中文网其他相关文章!