程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> 【C#】第1章 VS2015中C#6的新特性,

【C#】第1章 VS2015中C#6的新特性,

編輯:C#入門知識

【C#】第1章 VS2015中C#6的新特性,


分類:C#、VS2015

創建日期:2016-06-12

一、簡介

VS2015內置的C#版本為6.0,該版本提供了一些新的語法糖,這裡僅列出個人感覺比較有用的幾個新功能。

二、幾個很有用的新特性

注意:這些新特性只能用於VS2015及更高版本,無法在VS2013、VS2010等低版本中使用。當然,如果你不喜歡這些新的特性,仍然可以繼續使用原來的用法(所以說它是新的語法糖)。

1、自動屬性初始化的改進(有用)

原來的用法(聲明時無法同時初始化),例如:

class MyClass
{
    public int Age { get; set; }
    public string Name { get; set; }
    public MyClass()
    {
        Age = 20;
        Name = "張三";
    }
}

 

新用法(聲明時可同時初始化,更方便了),例如:

class MyClass
{
    public int Age { get; set; } = 20;
    public string Name { get; set; } = "張三";
}

2、String.Format的改進(有用)

原來的用法:用string.Format(…)實現,例如:

class MyClass
{
    public void MyMethod()
    {
        string name = "張三";
        int age = 20;
        string s1 = string.Format("{0},{1}", name, age);
        string s2 = string.Format("姓名={0},年齡={1}", name, age);
        string s3 = string.Format("{0,15},{1:d3}", name, age);
        string s4 = string.Format("{0,15},{1,10:d3}", name, age);
        Console.WriteLine("{0},{1},{2},{3}", s1, s2, s3 ,s4);
        string s5 = string.Format("{0:yyyy-MM-dd}", DateTime.Now);
    }
}

新用法:用“$”前綴實現(變量直接寫到大括號內,更方便了),例如:

class MyClass
{
    public void MyMethod()
    {
        string name = "張三";
        int age = 20;
        string s1 = $"{name},{age}";
        string s2 = $"姓名={name},年齡={age}";
        string s3 = $"{name,15},{age:d3}";
        string s4 = $"{name,15},{age,10:d3}";
        Console.WriteLine($"{s1},{s2},{s3},{s4}");
        string s5 = $"{DateTime.Now:yyyy-MM-dd}";
    }
}

3、字典的初始化

原來的用法:

class MyClass
{
    public void MyMethod()
    {
        Dictionary<string, int> student = new Dictionary<string, int>();
        student.Add("a1", 15);
        student.Add("a2", 14);
        student.Add("a3", 16);
    }
}

新用法(可以直接寫初始化的值,更方便了):

class MyClass
{
    public void MyMethod()
    {
        Dictionary<string, int> student = new Dictionary<string, int>()
        {
            ["a1"] = 15,
            ["a2"] = 14,
            ["a3"] = 16
        };
    }
}

4、可以用static聲明靜態類的引用

原來的用法:

using System;
namespace MyApp
{
    class Demo1New
    {
        public static double MyMethod(double x, double angle)
        {
            return Math.Sin(x) + Math.Cos(angle);
        }
    }
}

新用法(表達式比較復雜的時候有用,代碼更簡潔了):

using static System.Math;
namespace MyApp
{
    class Demo1New
    {
        public static double MyMethod(double x, double angle)
        {
            return Sin(x) + Cos(angle);
        }
    }
}

5、nameof表達式

假定WPF應用程序中有下面的類:

public class MyClass

{

public string MyText { get; set; } = "aaa";

}

並假定有下面的XAML代碼:

<StackPanel>

<TextBlock Name="txt1"/>

……

</StackPanel>

代碼隱藏類中原來的用法:

txt1.SetBinding(TextBlock.TextProperty, "MyText");

現在的用法(因為有錯誤檢查智能提示,用起來更方便了):

txt1.SetBinding(TextBlock.TextProperty, nameof(MyClass.MyText));

6、Null-條件表達式

(有用)

var ss = new string[] { "Foo", null };
var length0 = ss [0]?.Length; // 結果為3
var length1 = ss [1]?.Length; // 結果為null
var lengths = ss.Select (s => s?.Length ?? 0); //結果為[3, 0]

7、在try-catch-finally中使用await

異步編程中,原來在catch或者finally中無法使用await,現在可以了:

async void SomeMethod()
{
    try
    {
        //...etc...
    }
    catch (Exception x)
    {
        var diagnosticData = await GenerateDiagnosticsAsync (x);
        Logger.log (diagnosticData);
    }
    finally
    {
        await someObject.FinalizeAsync();
    }
}

 

 

 

 

 

 

 

 

 

 

8、其他

C# 6.0還有一些新的特性,對於初學者來說用的不是太多,所以這裡就不再介紹了。

再次說明一下,如果你不喜歡新的特性,仍然可以繼續使用原來的用法。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved