1. 程式人生 > >占位符

占位符

color gpo clas system () demo1 out pub col

 1 public class Demo1 {
 2     @Test
 3     public void fun1() {
 4         /*
 5         * 包含了占位符的字符串就是模板
 6         * 占位符:{0}、{1}、{2}
 7         * 可變參數,需要指定模板中的占位符的值,有幾個占位符就要求提供幾個參數
 8         * */
 9         String s = MessageFormat.format("{0}或{1}錯誤","用戶名","密碼");
10         System.out.println(s);//結果:用戶名或密碼錯誤
11 } 12 }

占位符