Computer >> Máy Tính >  >> Lập trình >> Android

Làm thế nào để sử dụng peek () trong Android ConcurrentLinkedQueue?

Trước khi đi vào ví dụ, chúng ta nên biết ConcurrentLinkedQueue là gì, nó là một hàng đợi không bị ràng buộc dựa trên các nút được liên kết. Nhiều luồng có thể truy cập các phần tử hàng đợi một cách an toàn. Các phần tử di chuyển dựa trên chiến lược hàng đợi như FIFO và các phần tử sẽ chèn từ một đuôi. Nó không cho phép các giá trị rỗng.

Ví dụ này giải thích về Cách sử dụng peek () trong android ConcurrentLinkedQueue

Bước 1 - Tạo một dự án mới trong Android Studio, đi tới Tệp ⇒ Dự án Mới và điền tất cả các chi tiết cần thiết để tạo một dự án mới.

Bước 2 - Thêm mã sau vào res / layout / activity_main.xml.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="https://schemas.android.com/apk/res/android"
   xmlns:app="https://schemas.android.com/apk/res-auto"
   xmlns:tools="https://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:gravity="center"
   android:layout_height="match_parent"
   tools:context=".MainActivity"
   android:orientation="vertical">
   <TextView
      android:id="@+id/actionEvent"
      android:textSize="40sp"
      android:layout_marginTop="30dp"
      android:layout_width="wrap_content"
      android:layout_height="match_parent" />
</LinearLayout>

Trong đoạn mã trên, chúng tôi đã sử dụng chế độ xem văn bản để hiển thị các phần tử ConcurrentLinkedQueue.

Bước 3 - Thêm mã sau vào src / MainActivity.java

package com.example.myapplication;
import android.os.Build;
import android.os.Bundle;
import android.support.annotation.RequiresApi;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.widget.TextView;
import java.util.concurrent.ConcurrentLinkedQueue;
public class MainActivityextends AppCompatActivity {
   ConcurrentLinkedQueue concurrentLinkedQueue;
   String head;
   @RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
      concurrentLinkedQueue = new ConcurrentLinkedQueue<String>();
      final TextViewactionEvent = findViewById(R.id.actionEvent);
      concurrentLinkedQueue.add("sai");
      concurrentLinkedQueue.add("ram");
      concurrentLinkedQueue.add("krishna");
      concurrentLinkedQueue.add("prasad");
      concurrentLinkedQueue.add("ram");
      actionEvent.setText("" + concurrentLinkedQueue);
      actionEvent.setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
            actionEvent.setText("" +concurrentLinkedQueue.isEmpty());
         }
      });
   }
}

Hãy thử chạy ứng dụng của bạn. Tôi giả sử bạn đã kết nối thiết bị Di động Android thực tế với máy tính của mình. Để chạy ứng dụng từ studio android, hãy mở một trong các tệp hoạt động của dự án của bạn và nhấp vào biểu tượng Run từ thanh công cụ. Chọn thiết bị di động của bạn làm tùy chọn, sau đó kiểm tra thiết bị di động sẽ hiển thị màn hình mặc định của bạn -

Làm thế nào để sử dụng peek () trong Android ConcurrentLinkedQueue?

Bây giờ click vào textview sẽ cho kết quả như hình bên dưới -

Làm thế nào để sử dụng peek () trong Android ConcurrentLinkedQueue?