1 + 10 = 11
我們會這樣用
String formatStr="%d + %d = %d"; TextView textView=(TextView)findViewById(R.id.txt); String text=String.format(formatStr,1,10,11); textView.setText(text);
但也可以透過$指定索引順序,效果相同
String formatStr="%1$d + %3$d = %2$d"; TextView textView=(TextView)findViewById(R.id.txt); String text=String.format(formatStr,1,11,10); textView.setText(text);
沒有留言:
張貼留言