21xrx.com
2024-11-22 10:33:55 Friday
登录
文章检索 我的文章 写文章
Java格式化输出:%s示例
2023-06-15 17:09:56 深夜i     --     --
Java格式化输出 %s 字符串格式化输出

在Java中,我们可以使用格式化输出来将字符串、数字等数据以指定格式输出。其中,%s是一种常用的格式化输出符号,用于输出字符串类型的数据。下面,我们将通过代码示例来演示如何使用%s进行格式化输出。

代码示例:


public class FormatOutput {

  public static void main(String[] args) {

    String str = "Hello World!";

    System.out.printf("字符串:%s\n", str);

  }

}

输出结果:


字符串:Hello World!

如上代码所示,我们先定义了一个字符串类型的变量 str,然后使用 System.out.printf() 方法进行格式化输出,其中 %s 用于指定输出字符串类型的数据。在输出时,我们使用 \n 来进行换行操作。

除了字符串类型,%s 还可用于输出其他类型的数据,如下所示:


public class FormatOutput {

  public static void main(String[] args) {

    int num = 100;

    double price = 9.99;

    char ch = 'A';

    boolean flag = true;

    String str = "Hello World!";

    

    System.out.printf("整型:%s\n", num);

    System.out.printf("浮点型:%s\n", price);

    System.out.printf("字符型:%s\n", ch);

    System.out.printf("布尔型:%s\n", flag);

    System.out.printf("字符串型:%s\n", str);

  }

}

输出结果:


整型:100

浮点型:9.99

字符型:A

布尔型:true

字符串型:Hello World!

通过上述代码示例,我们了解了使用 %s 进行格式化输出的基本用法。在实际开发中,我们可以根据需要,灵活使用各种格式化输出符号,以满足不同的输出需求。

  
  

评论区

{{item['qq_nickname']}}
()
回复
回复
    相似文章