Java中的 CompositeName size() 方法及示例
javax.naming.CompositeName 类的size()方法用于返回复合名称对象的大小,该大小等于该复合名称中的组件数。
句法:
public int size()
参数:此方法不接受任何内容。
返回值:此方法返回此复合名称中的非负数组件。
下面的程序说明了 CompositeName.size() 方法:
方案一:
// Java program to demonstrate
// CompositeName.size()
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(
"1/2/3/4/5/6/7/8/9/0");
// apply size()
int size = CompositeName1.size();
// print value
System.out.println("size: "
+ size);
}
}
输出:
size: 10
方案二:
// Java program to demonstrate
// CompositeName.size() 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/y/x/f");
// apply size()
int size = CompositeName1.size();
// print value
System.out.println("size:" + size);
}
}
输出:
size:8
参考资料:https://docs.oracle.com/javase/10/docs/api/javax/naming/CompositeName.html#size()