仅在不为空的情况下从列表中获取对象

时间:2019-01-11 05:14:21

标签: c# linq

仅当A不为空时,如何才能从A取走物体?这就是我正在尝试的方法,但是我意识到q != null永远都是正确的,因为A是一个列表。

A.Where(q => q.Id == B.Id && q != null)

我只需要在一行中进行选择,因为它位于Select语句中。

2 个答案:

答案 0 :(得分:1)

如果列表为空,A.Where(...)将返回0个结果。因此,如果列表为空,则不会从列表中取出任何项目。

关于您对q != null的评论始终为真,如果您的列表包含引用类型,那是不正确的,因为您的列表可以包含空值:

List<string> A = new List<string>();
A.Add(null);

这意味着在这种情况下您的子句将失败,因为您的条件顺序错误(应先执行空检查):

A.Where(q => q != null && q.Id == B.Id);

您也可以编写此代码来使用null conditional operator,但是请注意,如果B.Id也为null,则它将匹配:

A.Where(q => q?.Id == B.Id);

在上面的示例中,调用A.Where(q => q != null && q.Id == B.Id).ToList()将导致列表包含0个项目(因为源列表不包含任何匹配的元素)。

答案 1 :(得分:-1)

<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

<android.support.v7.widget.RecyclerView
        android:layout_width="0dp"
        android:layout_height="0dp" android:layout_marginTop="8dp"
        app:layout_constraintTop_toTopOf="parent" android:layout_marginBottom="8dp"
        app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent"
        android:layout_marginEnd="8dp" app:layout_constraintStart_toStartOf="parent"
        android:layout_marginStart="8dp" android:id="@+id/list"/>

<EditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:inputType="textPersonName"
        android:text="Name"
        android:ems="10"
        android:id="@+id/editText" android:layout_marginTop="8dp"
        app:layout_constraintTop_toTopOf="parent" android:layout_marginStart="8dp"
        app:layout_constraintStart_toStartOf="parent" android:layout_marginEnd="8dp"
        app:layout_constraintEnd_toEndOf="parent" android:layout_marginBottom="8dp"
        app:layout_constraintBottom_toBottomOf="parent"/>

if(A.Count != 0)
    A.Where(q => q.Id == B.Id);