Learnerslesson
   JAVA   
  SPRING  
  SPRINGBOOT  
 HIBERNATE 
  HADOOP  
   HIVE   
   ALGORITHMS   
   PYTHON   
   GO   
   KOTLIN   
   C#   
   RUBY   
   C++   




LIST - SIZE() METHOD


The size() Method is used to give us the number of elements in the List.


Let us say, we have a List that contains three names, Mohan, Kriti and Salim. And we want to check how many elements are there in the List.


We can use the size() Method to achieve the above.


Example :



#include <iostream>
#include <list>

using namespace std;

int main() {

    list<string> x = {"Mohan", "Kriti", "Salim"};
    int count = x.size(); 
    cout << "The number of elements in the List are : " << count;  
    
    return 0;    
}


Output :



  The number of elements in the List are : 3

So, in the above code we have created a List and initialised to the variable x.


list<string> x = {"Mohan", "Kriti", "Salim"};

Below is how the values are positioned in the List,

java_Collections

Next, we have used the size() method to get the number of elements in the List and store it in a variable count.


int count = x.size();
java_Collections


And when we print the value of count variable, we get 3 as output.