C#中15大顶级功能(1/2)
有关C#的15大顶级功能的第一个帖子是出现在Automate The Planet上。下面列出程序猿在C#编程生涯中最喜欢的C#功能,当然包括完整的解释和代码示例。
1. ObsoleteAttribute
ObsoleteAttribute适用于除组件,模块,参数和返回值的所有程序元素。标记过时元素,并通知用户该元件将在产品的未来版本中删除。
Message属性包含一个当assignee属性后将显示的字符串。
IsError-设置为true,如果在代码中使用目标属性。
public static class ObsoleteExample { // Mark OrderDetailTotal As Obsolete. [ObsoleteAttribute("This property (DepricatedOrderDetailTotal) is obsolete. Use InvoiceTotal instead.", false)] public static decimal OrderDetailTotal { get { return 12m; } } public static decimal InvoiceTotal { get { return 25m; } } // Mark CalculateOrderDetailTotal As Obsolete. [ObsoleteAttribute("This method is obsolete. Call CalculateInvoiceTotal instead.", true)] public static decimal CalculateOrderDetailTotal() { return 0m; } public static decimal CalculateInvoiceTotal() { return 1m; } }
如果我们在代码中使用上述类,系统将给出错误或警告。
Console.WriteLine(ObsoleteExample.OrderDetailTotal); Console.WriteLine(); Console.WriteLine(ObsoleteExample.CalculateOrderDetailTotal());
官方文档:https://msdn.microsoft.com/en-us/library/system.obsoleteattribute.aspx
2.通过DefaultValueAttribute设置C# Auto-implemented属性默认值
DefaultValueAttribute指定了属性的默认值。你可以创建DefaultValueAttribute为任何价值,成员的默认值通常是它的初始值。
该属性不会导致成员被自动指定的值初始化。因此,你必须在代码中设置初始值。
public class DefaultValueAttributeTest { public DefaultValueAttributeTest() { // Use the DefaultValue propety of each property to actually set it, via reflection. foreach (PropertyDescriptor prop in TypeDescriptor.GetProperties(this)) { DefaultValueAttribute attr = (DefaultValueAttribute)prop.Attributes[typeof(DefaultValueAttribute)]; if (attr != null) { prop.SetValue(this, attr.Value); } } } [DefaultValue(25)] public int Age { get; set; } [DefaultValue("Anton")] public string FirstName { get; set; } [DefaultValue("Angelov")] public string LastName { get; set; } public override string ToString() { return string.Format("{0} {1} is {2}.", this.FirstName, this.LastName, this.Age); } }
Auto-implemented属性在类中通过反射构造函数初始化。代码通过类的所有属性进行迭代,并且如果DefaultValueAttribute存在,就将它们设置为默认值。
官方文档:https://msdn.microsoft.com/en-us/library/system.componentmodel.defaultvalueattribute.aspx
3. DebuggerBrowsableAttribute
确定成员是否以及如何显示在调试器变量窗口。
public static class DebuggerBrowsableTest { private static string squirrelFirstNameName; private static string squirrelLastNameName; // The following DebuggerBrowsableAttribute prevents the property following it // from appearing in the debug window for the class. [DebuggerBrowsable(DebuggerBrowsableState.Never)] public static string SquirrelFirstNameName { get { return squirrelFirstNameName; } set { squirrelFirstNameName = value; } } [DebuggerBrowsable(DebuggerBrowsableState.Collapsed)] public static string SquirrelLastNameName { get { return squirrelLastNameName; } set { squirrelLastNameName = value; } } }
如果你在代码中使用示例类,那么尝试通过调试器(F11)执行。
DebuggerBrowsableTest.SquirrelFirstNameName = "Hammy"; DebuggerBrowsableTest.SquirrelLastNameName = "Ammy";
官方文档:https://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerbrowsableattribute.aspx
4. ?? Operator
?? Operator是程序猿最喜欢的C#隐藏功能之一,经常在代码里用到它。
如果左边的操作数不为空,?? Operator返回左边的操作数,,否则将返回右边的。可空类型可以包含一个值,也可以是不确定的。当可空类型分配给非可空类型时?? Operator定义返回默认值。
int? x = null; int y = x ?? -1; Console.WriteLine("y now equals -1 because x was null => {0}", y); int i = DefaultValueOperatorTest.GetNullableInt() ?? default(int); Console.WriteLine("i equals now 0 because GetNullableInt() returned null => {0}", i); string s = DefaultValueOperatorTest.GetStringValue(); Console.WriteLine("Returns 'Unspecified' because s is null => {0}", s ?? "Unspecified");
官方文档:https://msdn.microsoft.com/en-us/library/ms173224(v=vs.80).aspx
5. Curry和Partial方法
Curry-在数学和计算机科学中,柯里化(Currying)是把接受多个参数的函数变换成接受一个单一参数(最初函数的第一个参数)的函数,并且返回接受余下的参数且返回结果的新函数的技术。
要想通过C#实现,就要用到Curry扩展方法。
public static class CurryMethodExtensions { public static Func<A, Func<B, Func<C, R>>> Curry<A, B, C, R>(this Func<A, B, C, R> f) { return a => b => c => f(a, b, c); } }
扩展方法的使用一开始是有点势不可挡的。
Func<int, int, int, int> addNumbers = (x, y, z) => x + y + z; var f1 = addNumbers.Curry(); Func<int, Func<int, int>> f2 = f1(3); Func<int, int> f3 = f2(4); Console.WriteLine(f3(5));
不同函数的返回类型可通过var关键字进行交换。
官方文档:https://en.wikipedia.org/wiki/Currying#/Contrast_with_partial_function_application
Partial - 在计算机科学中,部分应用程序(或部分功能的应用程序)是指固定的一些参数的函数,产生另一种更小参数数量功能的过程。
public static class CurryMethodExtensions { public static Func<C, R> Partial<A, B, C, R>(this Func<A, B, C, R> f, A a, B b) { return c => f(a, b, c); } }
Partial的扩展方法比Curry的更简单直观。
Func<int, int, int, int> sumNumbers = (x, y, z) => x + y + z; Func<int, int> f4 = sumNumbers.Partial(3, 4); Console.WriteLine(f4(5));
同样,不同类型的代理可通过var关键字来声明。
官方文档:https://en.wikipedia.org/wiki/Partial_application
6. Weak Reference
Weak Reference允许垃圾收集器收集对象,同时还允许应用程序访问的对象。如果需要该对象,仍可通过强引用获取,并防止它被收集。
WeakReferenceTest hugeObject = new WeakReferenceTest(); hugeObject.SharkFirstName = "Sharky"; WeakReference w = new WeakReference(hugeObject); hugeObject = null; GC.Collect(); Console.WriteLine((w.Target as WeakReferenceTest).SharkFirstName);
如果垃圾收集没有被明确调用,跟有可能弱引用仍可被分配。
官方文档:https://msdn.microsoft.com/en-us/library/system.weakreference.aspx
7. Lazy<T>
使用延迟初始化推迟创建大型或资源密集型对象,或执行资源密集型任务,特别是在程序的生命周期内可能不会发生这样的创建或执行。
public abstract class ThreadSafeLazyBaseSingleton<T> where T : new() { private static readonly Lazy<T> lazy = new Lazy<T>(() => new T()); public static T Instance { get { return lazy.Value; } } }
官方文档:https://msdn.microsoft.com/en-us/library/dd642331(v=vs.110).aspx
8. BigInteger
BigInteger类型是一个不可变型,代表一个任意大的整数,其值在理论上是没有上限和下限的。这种类型不同于其它.NET Framework中的整型,它们有MINVALUE和MaxValue属性表示的范围。
注意:由于BigInteger的类型是不可改变并且没有上限或下限的,因此任何引起BigInteger值增长过大的操作都可能抛出OutOfMemoryException异常。
string positiveString = "91389681247993671255432112000000"; string negativeString = "-90315837410896312071002088037140000"; BigInteger posBigInt = 0; BigInteger negBigInt = 0; posBigInt = BigInteger.Parse(positiveString); Console.WriteLine(posBigInt); negBigInt = BigInteger.Parse(negativeString); Console.WriteLine(negBigInt);
官方文档:https://msdn.microsoft.com/en-us/library/system.numerics.biginteger(v=vs.110).aspx
点击查看>>更多