vote up 8 vote down star
2

Printf got added to Java with the 1.5 release but I can't seem to find how to send the output to a string rather than a file (which is what sprintf does in C). Does anyone know how to do this?

flag

4 Answers

vote up 20 vote down check
String.format("%4d", i*j );

See format.

link|flag
vote up 1 vote down

@erickson.

Strings are immutable types. You cannot modify them, only return new string instances.

Because of that, "foo".format() makes little sense, as it would have to be called like

string newString = "foo".format();

The original java authors (and .NET authors), decided that a static method made more sense in this situation, as you are not modifying "foo", but instead calling a format method and passing in an input string.

EDIT: Heh, this site can be so amusing sometimes. I got downvoted for mentioning the fact that strings are immutable types.

Here is an example of why Format() would be dumb as an instance method. In .NET (and probably in Java), Replace() is an instance method.

You can do this:

 "I Like Wine".Replace("Wine","Beer");

However, nothing happens, because Strings are immutable. Replace tries to return a new string, but it is assigned to nothing.

This causes lots of common rookie mistakes like:

// Contrived Example
inputText.Replace(" ","%20");

Again, nothing happens, instead you have to do :

inputText = inputText.Replace(" ","%20");

Now, if you understand that strings are immutable, that makes perfect sense. If you don't, then you are just confused. The proper place for Replace, would be where Format is, as a static method of String:

 inputText = String.Replace(inputText," ", "%20");

Now there is no question as to whats going on.

The real question is, why did the authors of these frameworks decide that one should be an instance method, and the other static? In my opinion, both are more elegantly expressed as static methods, but erickson seems to think both belong as instance methods.

Regardless of your opinion, the truth is that you are less prone to make a mistake using the static version, and the code is easier to understand (No Hidden Gotchas).

Of course there are some methods that are perfect as instance methods, take String.Length()

int length = "123".Length();

In this situation, its obvious we are not trying to modify "123", we just inspecting it, and returning its length...This is a perfect candidate for an instance method.

My simple rules for Instance Methods on Immutable Objects:

  • If you need to return a new instance of the same type, use a static method.
  • Otherwise, use an instance method.
link|flag
I see that you somehow you got the idea I was suggesting the format string was to be modified. I never considered the possibility that someone might expect a String to change, since their immutability is so fundamental. – sylvarking Oct 13 '08 at 18:14
1  
Seeing as the format string is usually more like "The Price is %4d", and not "%4d", I still see a lot of potential for confusion. What do you have against static methods? :) – FlySwat Oct 13 '08 at 18:20
This answer seems to have nothing to do with the question. – Steve McLeod Jun 6 at 7:58
The answer isn't even Java, seems to be more relevant to .NET – Photodeus Nov 19 at 6:35
vote up 0 vote down

@erickson "%4d".format(i * j) doesn't make sense.

  1. You are not formatting "%4d", you are formatting i * j.
  2. String.format takes variable arguments (multiple arguments). What do you do with String.format("%d %d", i, j)?
  3. You should make this a separate question.

Edit: Removed the literal string invoking method thing.

link|flag
1. In list.remove(item) you are removing item, not the list. It is quite common for methods to follow a subject.verb(object) pattern, mimicking the subject-verb-object order used in English. 2. instance methods can have varargs. 3. agreed. – Laurence Gonsalves Jun 6 at 8:04
vote up 2 vote down

Have a look at Formatted Printing for Java (sprintf)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.