Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Java

โปรแกรม Java เพื่อรับขนาดของคอลเลกชัน


ในบทความนี้เราจะเข้าใจวิธีการหาขนาดของคอลเลกชัน คอลเล็กชันคือเฟรมเวิร์กที่จัดเตรียมสถาปัตยกรรมสำหรับจัดเก็บและจัดการกลุ่มของอ็อบเจ็กต์ 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