关于异步语法的Visual Studio错误/建议

时间:2016-07-02 22:08:15

标签: c# c#-4.0 asynchronous visual-studio-2015

我有一个方法,我声明为asych方法。代码如下所示。

private async Task<string> tempPassword()
{
    char[] hashes = "ABCDEFGHJKMNPQRUVWXY34689!?@$#".ToCharArray();
    Random r = new Random(DateTime.Now.Millisecond);
    List<char> bits = new List<char>();
    while (bits.Count < 7)
    {
         int i = r.Next(0, hashes.Length);
         if (!bits.Contains(hashes[i]))
              bits.Add(hashes[i]);
    }
    return string.Join("", bits.ToArray());
}

虽然这段代码是正确的并且编译,但Visual Studio给了我以下反馈:

  

此异步方法缺少等待运算符并将同步运行。   考虑使用await运算符等待非阻塞API调用,或   '等待Task.Run(...)'在后台线程上进行CPU绑定工作。

虽然我没有丰富的异步背景(这就是我使用它的原因,老实说,所以我会学习)但我觉得这种方法中没有任何东西需要等待操作员,所以我有点不知道我应该等待什么。

1 个答案:

答案 0 :(得分:1)

  

在我看来,这种方法中没有任何东西需要await运算符

在这种情况下,为什么方法<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.adamrath.openwhensad"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".MainActivity" android:label="@string/app_name"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application> </manifest> 首先出现?如果您使用<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context="com.adamrath.openwhensad.MainActivity" android:background="#252525"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:textAppearance="?android:attr/textAppearanceMedium" android:text="@string/CheerText" android:id="@+id/mainText" android:layout_marginTop="204dp" android:textColor="#ffffff" android:layout_alignParentTop="true" android:layout_centerHorizontal="true" android:textSize="24sp" android:textAlignment="center" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/ButtonText" android:id="@+id/sadbtn" android:layout_marginBottom="29dp" android:layout_alignParentBottom="true" android:layout_centerHorizontal="true" style="@style/AppTheme" android:clickable="true" android:enabled="true" /> </RelativeLayout> ,则只需async。在当前状态下,该方法将同步执行,并返回已完成的async。如果您不希望它需要异步,您可以更改它的签名以返回await。如果您确实希望它在将来变为异步(或者如果由于您正在实现接口或从基类重写方法而无法更改返回类型),则可以删除{{1修饰符,并显式返回已完成的任务:

Task<string>

这将避免创建异步状态机的开销。