zoukankan      html  css  js  c++  java
  • String.format Tutorial

    String format(String format, Object... args)

    The format specifiers for general, character, and numeric types have the following syntax:

    %[argument_index$][flags][width][.precision]conversion
    
    • argument_index is a decimal integer indicating the position of the argument in the argument list. It starts from "1$".
    • flags is a set of  characters that modify the output format.
    Flag General Character Integer Floating Point Date/Time Description
    '-' Y Y Y Y Y The result will be left-justified
    '#' Y - Y Y - The result should use a conversion-dependent alternate form
    '+' - - Y Y - The result will always include a sign
    ' '  - - Y Y - The result will include a leading space for positive values
    '0' - - Y Y - The result will be zero-padded 
    ',' - - Y Y - The result will include locale-specific grouping separators 
    '(' - - Y Y - The result will enclose negative numbers in parentheses 
    • width is a non-negative decimal interger indicating the minimum number of the number of characters to be written to the output.
    • For the floating-point conversions 'e''E', and 'f' the precision is the number of digits after the decimal separator. If the conversion is 'g' or 'G', then the precision is the total number of digits in the resulting magnitude after rounding. If the conversion is 'a' or 'A', then the precision must not be specified.
    • conversion are divided into the following categories:

        General, Character, Numeric(Integer, Floating Point), Date/Time, Percent, Line Separator

    ConversionArgument CategoryDescription
    'b''B' general If the argument arg is null, then the result is "false". If arg is a boolean or Boolean, then the result is the string returned by String.valueOf(arg). Otherwise, the result is "true".
    'h''H' general If the argument arg is null, then the result is "null". Otherwise, the result is obtained by invoking Integer.toHexString(arg.hashCode()).
    's''S' general If the argument arg is null, then the result is "null". If arg implements Formattable, then arg.formatTo is invoked. Otherwise, the result is obtained by invokingarg.toString().
    'c''C' character The result is a Unicode character
    'd' integral The result is formatted as a decimal integer
    'o' integral The result is formatted as an octal integer
    'x''X' integral The result is formatted as a hexadecimal integer
    'e''E' floating point The result is formatted as a decimal number in computerized scientific notation
    'f' floating point The result is formatted as a decimal number
    'g''G' floating point The result is formatted using computerized scientific notation or decimal format, depending on the precision and the value after rounding.
    'a''A' floating point The result is formatted as a hexadecimal floating-point number with a significand and an exponent
    't''T' date/time Prefix for date and time conversion characters. See Date/Time Conversions.
    '%' percent The result is a literal '%' ('u0025')
    'n' line separator The result is the platform-specific line separator
  • 相关阅读:
    VS2017+MPI10.0安装与环境配置
    数组翻转(非reverse)
    判断一个字符串中出现次数最多的字符,统计这个次数
    Mock模拟数据,前后端分离
    js放大镜
    360度全景图片
    照片墙应用
    KindEditor配置和使用
    关于IIS的错误 312 (net::ERR_UNSAFE_PORT):未知错误
    从C到C++:命令行参数
  • 原文地址:https://www.cnblogs.com/leo-cai/p/5797044.html
Copyright © 2011-2022 走看看