The size() method of a javax.naming.CompositeName class is used to return the size of the composite name object which is equal to the number of components in this composite name.
Syntax:
public int size()
Parameters: This method accepts nothing.
Return value: This method returns nonnegative number of components in this composite name.
Below programs illustrate the CompositeName.size() method:
Program 1:
import java.util.Properties;
import javax.naming.CompositeName;
import javax.naming.InvalidNameException;
public class GFG {
public static void main(String[] args)
throws InvalidNameException
{
CompositeName CompositeName1
= new CompositeName(
"1/2/3/4/5/6/7/8/9/0" );
int size = CompositeName1.size();
System.out.println( "size: "
+ size);
}
}
|
Program 2:
import java.util.Properties;
import javax.naming.CompositeName;
import javax.naming.InvalidNameException;
public class GFG {
public static void main(String[] args)
throws InvalidNameException
{
CompositeName CompositeName1
= new CompositeName(
"c/e/d/v/a/y/x/f" );
int size = CompositeName1.size();
System.out.println( "size:" + size);
}
}
|
References: https://docs.oracle.com/javase/10/docs/api/javax/naming/CompositeName.html#size()
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
27 Mar, 2020
Like Article
Save Article