当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java FieldPosition setEndIndex()用法及代码示例


java.text.FieldPosition类的setEndIndex()方法用于设置在FieldPosition对象中以最后一个字符开头的字符的索引。

用法:

public void setEndIndex(int ei)

参数:此方法采用字符的新索引的整数值索引,该新索引的前面是FieldPosition对象中的最后一个字符。


返回值:此方法无返回值。

下面是说明getEndIndex()方法的示例:

范例1:

// Java program to demonstrate 
// getEndIndex() method 
  
import java.text.*; 
import java.util.*; 
import java.io.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
        try { 
  
            // Creating and initializing 
            // new FieldPosition Object 
            FieldPosition pos 
                = new FieldPosition( 
                    MessageFormat.Field.ARGUMENT); 
  
            // setting end index 
            pos.setEndIndex(10); 
  
            // getting end index of FieldPosition Object 
            // using getEndIndex() mehtod 
            int i = pos.getEndIndex(); 
  
            // display result 
            System.out.println("end index:- " + i); 
        } 
  
        catch (ClassCastException e) { 
  
            System.out.println("Exception thrown:" + e); 
        } 
    } 
}
输出:
end index:- 10

范例2:

// Java program to demonstrate 
// getEndIndex() method 
  
import java.text.*; 
import java.util.*; 
import java.io.*; 
  
public class GFG { 
    public static void main(String[] argv) 
    { 
        try { 
  
            // Creating and initializing 
            // new FieldPosition Object 
            FieldPosition pos 
                = new FieldPosition( 
                    DateFormat.Field.AM_PM); 
  
            // setting end index 
            pos.setEndIndex(5); 
  
            // getting end index of FieldPosition Object 
            // using getEndIndex() mehtod 
            int i = pos.getEndIndex(); 
  
            // display result 
            System.out.println("end index:- " + i); 
        } 
  
        catch (ClassCastException e) { 
  
            System.out.println("Exception thrown:" + e); 
        } 
    } 
}
输出:
end index:- 5

参考: https://docs.oracle.com/javase/9/docs/api/java/text/FieldPosition.html#setEndIndex-int-



相关用法


注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 FieldPosition setEndIndex() method in Java with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。