温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

如何在java主方法中使用格式化工具

发布时间:2024-12-06 11:25:52 来源:亿速云 阅读:80 作者:小樊 栏目:编程语言

在Java主方法中使用格式化工具,您可以使用String.format()方法或者System.out.printf()方法

  1. 使用String.format():
public class Main {
    public static void main(String[] args) {
        String name = "张三";
        int age = 25;
        double height = 175.5;

        String formattedString = String.format("姓名:%s,年龄:%d,身高:%.1f 米", name, age, height);
        System.out.println(formattedString);
    }
}
  1. 使用System.out.printf():
public class Main {
    public static void main(String[] args) {
        String name = "张三";
        int age = 25;
        double height = 175.5;

        System.out.printf("姓名:%s,年龄:%d,身高:%.1f 米%n", name, age, height);
    }
}

在这两个示例中,我们都使用了格式化占位符,如%s(字符串),%d(整数)和%.1f(保留一位小数的浮点数)。System.out.printf()方法将格式化后的字符串输出到控制台。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI