Java中的 CompositeName getSuffix() 方法及示例
javax.naming.CompositeName 类的getSuffix()方法用于获取复合名称对象,其组件由该复合名称中的组件的后缀组成。我们需要从这个复合名称对象中提取 Suffix 的位置作为参数传递。返回的复合名称对象和此复合名称对象共享相同的语法。如果我们对此复合名称进行任何不会影响返回的名称的更改,反之亦然。
句法:
public Name getSuffix(int posn)
参数:此方法接受posn ,它是要开始的组件的从 0 开始的索引。必须在 [0, size()] 范围内。
返回值:此方法返回一个复合名称,该名称由 [posn, size()) 范围内的索引处的组件组成。如果 posn 等于 size(),则返回一个空的复合名称。
异常:如果 posn 超出指定范围,则此方法抛出ArrayIndexOutOfBoundsException 。
下面的程序说明了 CompositeName.getSuffix() 方法:
方案一:
// Java program to demonstrate
// CompositeName.getSuffix()
import java.util.Properties;
import javax.naming.CompositeName;
import javax.naming.InvalidNameException;
public class GFG {
public static void main(String[] args)
throws InvalidNameException
{
// create composite name object
CompositeName CompositeName1
= new CompositeName(
"0/1/2/3/4/5/6/7/8/9");
// apply getSuffix()
CompositeName newCompositeName
= (CompositeName)
CompositeName1.getSuffix(3);
// print value
System.out.println("New CompositeName Object: "
+ newCompositeName);
}
}
输出:
New CompositeName Object: 3/4/5/6/7/8/9
方案二:
// Java program to demonstrate
// CompositeName.getSuffix() method
import java.util.Properties;
import javax.naming.CompositeName;
import javax.naming.InvalidNameException;
public class GFG {
public static void main(String[] args)
throws InvalidNameException
{
// create composite name object
CompositeName CompositeName1
= new CompositeName(
"c/e/d/v/a/b/z/y/x/f");
// apply getSuffix()
CompositeName newCompositeName
= (CompositeName)
CompositeName1.getSuffix(3);
// print value
System.out.println(
"New CompositeName Object: "
+ newCompositeName);
}
}
输出:
New CompositeName Object: v/a/b/z/y/x/f
参考资料:https://docs.oracle.com/javase/10/docs/api/javax/naming/CompositeName.html#getSuffix(int)