Argument indexes enable you to reuse an argument without having to specify it twice
import java.util.Formatter; public class MainClass { public static void main(String args[]) { Formatter fmt = new Formatter(); fmt.format("%d in hex is %1$x", 255); System.out.println(fmt); } } 255 in hex is ff