zoukankan      html  css  js  c++  java
  • Gains from a Team Tech Discussion Forum

    Gains:
    0. Dependency Management. By good dependency (dependency brings in coupling) management (interface-oriented, depend on abstraction, dependency injection, IOC, design pattern), we can restrict the dependency between two modules / classes the least.
    1. Testability. Test code is about how your client uses your class. If it's easy to write (cover as many cases as possible), the design of the class is good.
    2. Debugability. LINQ is not good support...
    3. Trace breakpoint can be further making use of.
    4. Tools
        --View C# class: object browser; /// comment can help generating a metadata xml document for a assembly; class view; there is way to collapse a class to see its intefrace only;
        --Find out why your solution keeps out of date: change a xml node in VS to enable further info output; debugview is a tool to better view debug info??
        
    5. Other
    -- everyone knows more on some aspect than others, while a sure thing is that: on some other aspects, you know less.

    -- Metadata:??? for persistence and for reflection??

    6. External / internal beauty of code

     -- External: comments, design, etc everything you can see by viewing the source code.

     -- Internal: performance, capacity, security, stability

       
  • 相关阅读:
    vsftpd 配置:chroot_local_user与chroot_list_enable详解
    rsync同步目录
    apache
    centos 7 服务管理
    PowerPoint’s Menu is Too Big
    测试网页返回值
    作为人的展现方式
    Java 日期与时间
    Java 随机数
    Character 类
  • 原文地址:https://www.cnblogs.com/taoxu0903/p/1817292.html
Copyright © 2011-2022 走看看