Static program analysis: Difference between revisions

Content deleted Content added
mNo edit summary
TUF-KAT (talk | contribs)
mNo edit summary
Line 1:
<b>'''Static code analysis</b>''' refers tois a set of methods for analysing [[software]] [[source code]] in an effort to gain understanding and to target areas for review and/or rewrite. The number of metrics (''measures'') that can be applied are numerous. One of the crudest measurments, for example, is the size of code, usually expressed in kLOC's (1000 lines of code). Defining a consistent definition of a Line''[[line of Codecode]]'' has long been an item for debate.
 
One common metric in static analysis is ''[[McCabes Cyclomatic Complexity Metric]]'' which basically measures the number of choices a function makes. Functions with a high number of conditional statements (if's, while etc.) will have a high complexity. Such functions therefore can be considered more likely to contain bugs and be harder to maintain.
 
==External links==
<h4>Links</h4>
* Page on Software Measurment [http://yunus.hun.edu.tr/~sencer/research.html information of software management]