इस लेख में, हम समझेंगे कि संग्रह का आकार कैसे प्राप्त करें। संग्रह एक ढांचा है जो वस्तुओं के समूह को संग्रहीत और हेरफेर करने के लिए वास्तुकला प्रदान करता है। JavaCollections उन सभी कार्यों को प्राप्त कर सकता है जो आप डेटा पर करते हैं जैसे खोज, सॉर्टिंग, सम्मिलन, हेरफेर, और हटाना।
नीचे उसी का एक प्रदर्शन है -
मान लें कि हमारा इनपुट है -
Input list: [100, 180, 250, 300]
वांछित आउटपुट होगा -
The size of the list = 4
एल्गोरिदम
Step 1 - START Step 2 - Declare a list namely input_list. Step 3 - Define the values. Step 4 - Using the function size(), we get the size of the input_list. Step 5 - Display the result Step 6 - Stop
उदाहरण 1
यहां, हम 'मेन' फंक्शन के तहत सभी ऑपरेशंस को एक साथ बांधते हैं।
import java.util.*; public class Demo { public static void main(String[] args){ List<Integer> input_list = new ArrayList<Integer>(); input_list.add(100); input_list.add(180); input_list.add(250); input_list.add(300); System.out.println("The list is defined as: " + input_list); int list_size = input_list.size(); System.out.println("\nThe size of the list = " + list_size); } }
आउटपुट
The list is defined as: [100, 180, 250, 300] The size of the list = 4
उदाहरण 2
यहां, हम ऑब्जेक्ट ओरिएंटेड प्रोग्रामिंग को प्रदर्शित करने वाले कार्यों में संचालन को समाहित करते हैं।
import java.util.*; public class Demo { static void print_size(List<Integer> input_list){ int list_size = input_list.size(); System.out.println("\nThe size of the list = " + list_size); } public static void main(String[] args){ List<Integer> input_list = new ArrayList<Integer>(); input_list.add(100); input_list.add(180); input_list.add(250); input_list.add(300); System.out.println("The list is defined as: " + input_list); print_size(input_list); } }
आउटपुट
The list is defined as: [100, 180, 250, 300] The size of the list = 4