zoukankan      html  css  js  c++  java
  • Useful Performance Tips for C#

    Useful Performance Tips for C#

     

     

    The following content are fully copied from Rob's blog. Thanks, Rob.

    Source URL: http://robkennedy.com/articles/146.aspx

     

    ***

    The following tips for C# are pretty useful to keep in mind while programming for future projects.

     

    1. Use finally in your try {} catch {} statements to ensure resource deallocation.

    2. Treat threads as a shared resource and use the optimized .NET thread pool when possible.

    3. Use the server garbage collector for server based multi-CPU environments.

    4. Avoid string concatenation with +=

    5. Use the using(obj) short hand to simplify coding. using() is the same as try{}finally{obj.Dispose(); } and insures that obj is disposed of after use.

    6. Use thread pool when using threads.

    WaitCallback methTarget = new WaitCallback(myClass.Method);

    ThreadPool.QueueUserWorkItem(methTarget);

     

    7. Use StringBuilder for string concatenation; avoid using + to concatenate strings

    8. If interacting with collections from multiple threads, you must make the collection thread safe.

     

    ArrayList myAr = new ArrayList();

    // Creates a synchronized wrapper around the ArrayList.

    ArrayList mySyncedAr = ArrayList.Synchronized(myAr);

     

    // To use collection from thread:

    ArrayList myCollection = new ArrayList();

    lock(myCollection.SyncRoot);

    foreach ( Object item in myCollection )

    { // do work here }

     

    Please note the following remarks from MSDN:

    To guarantee the thread safety of the ArrayList, all operations must be done through this synchronized wrapper.

     

    Enumerating through a collection is intrinsically not a thread-safe procedure. Even when a collection is synchronized, other threads could still modify the collection, which causes the enumerator to throw an exception. To guarantee thread safety during enumeration, you can either lock the collection during the entire enumeration or catch the exceptions resulting from changes made by other threads.

     

     

    9. Initialize collection sizes at startup to speed up node creation.

     

    Source URL:

    http://robkennedy.com/articles/146.aspx

     

    ***

    9条不怎么明白,是指如下2中情况吗?

    ArrayList myAL = new ArrayList(); // Without initializing collection sizes

    ArrayList myAL = new ArrayList(1000); // With initializing collection sizes

     

    那位帮忙解释一下,Thanks

  • 相关阅读:
    文件系列--截取路径字符串,获取文件名
    ASP.NET State Service (ASP.NET 状态服务)已启动,并且客户端端口与服务器端口相同
    大小写字母,特殊字符,数字,四选一组合或者全组合,长度至少八位,验证
    设计模式-23种设计模式介绍
    &和&&区别
    GridView中Button多参数传参
    HTTP 错误 500.19
    Windows系统添加端口号
    win10安装IIS服务
    2019最新整理PHP面试题附答案
  • 原文地址:https://www.cnblogs.com/rickie/p/67818.html
Copyright © 2011-2022 走看看