Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6710495
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T08:01:46+00:00 2026-05-26T08:01:46+00:00

Is there any reason not to use %s for the format specifier when formatting

  • 0

Is there any reason not to use %s for the format specifier when formatting numbers if no extra formatting is required?

e.g.

int answer = 42;
String text = String.format("The answer is %s", answer);

rather than the more usual:

int answer = 42;
String text = String.format("The answer is %d", answer);

The reason I’m asking is that I want to make some automated changes to source code, and it would be inconvenient to have to figure out whether the type of answer is int or String or something else

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T08:01:47+00:00Added an answer on May 26, 2026 at 8:01 am

    I would expect there to be a potential difference in terms of thousands separators and other locale-specific options. The first approach is just going to call Integer.toString (which is not locale-sensitive) because Integer doesn’t implement Formattable. The second is going to use potentially locale-sensitive integer formatting – it could insert thousands separators, potentially even use a different set of digits etc.

    Looking at the docs more carefully, it looks like grouping separators won’t be applied without a specific formatting flag, but:

    Number Localization Algorithm

    After digits are obtained for the integer part, fractional part, and exponent (as appropriate for the data type), the following transformation is applied:

    • Each digit character d in the string is replaced by a locale-specific digit computed relative to the current locale’s zero digit z; that is d – ‘0’ + z.

    Sample where it makes a difference:

    import java.util.Locale;
    
    public class Test {
      public static void main(String[] args) {
        Locale.setDefault(new Locale("hi", "IN"));
        System.out.printf("String: %s; Number: %d\n", 1234, 1234);
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any reason not to use the bitwise operators &, |, and ^
is there any good reason not to use XML-RPC for an object-broker server/client architecture?
Are there any good reasons not to use \u0000 as a delimiter within a
Is there any reason not to set up the install so that major upgrade
When designing a collection class, is there any reason not to implement locking privately
Is there any real reason not to make a member function virtual in C++?
Is there any reason why JQuery would not work when used in an ASPX
Is there any reason why images are not being displayed if I place it
Is there any reason something like this would not work? This is the logic
Is there any reason for my jQuery effects not to be taking effect immediately?

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.