如何在 Android ConcurrentLinkedQueue 中查詢元素?


在進入示例之前,我們應該瞭解什麼是 ConcurrentLinkedQueue,它是一個基於連結節點的無界佇列。多個執行緒可以安全地訪問佇列元素。元素根據佇列策略(FIFO)進行移動,並且元素從尾部插入。它不允許空值。

此示例演示如何在 Android ConcurrentLinkedQueue 中查詢元素。

步驟 1 - 在 Android Studio 中建立一個新專案,轉到檔案 ⇒ 新建專案,並填寫所有必需的詳細資訊以建立新專案。

步驟 2 - 將以下程式碼新增到 res/layout/activity_main.xml 中。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:app="http://schemas.android.com/apk/res-auto"
   xmlns:tools="http://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>

在上面的程式碼中,我們使用了文字檢視來顯示 ConcurrentLinkedQueue 元素。

步驟 3 - 將以下程式碼新增到 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 {
   ConcurrentLinkedQueueconcurrentLinkedQueue;
   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.contains("prasad"));
         }
      });
   }
}

讓我們嘗試執行您的應用程式。我假設您已將您的實際 Android 移動裝置連線到您的計算機。要從 Android Studio 執行應用程式,請開啟您的專案中的一個活動檔案,然後單擊工具欄中的執行  圖示。選擇您的移動裝置作為選項,然後檢查您的移動裝置,它將顯示您的預設螢幕 -

現在點選文字檢視,它將給出如下所示的結果 -

點選  此處  下載專案程式碼

更新於: 2020 年 6 月 30 日

96 次檢視

啟動您的 職業生涯

透過完成課程獲得認證

開始
廣告

© . All rights reserved.