cyclomatic-complexity
Are there any tools for visualizing code complexity or graphing method calls in Objective-C? [closed]
Closed. This question is seeking recommendations for books, tools, software libraries, and more. It does not meet Stack Overflow guidelines. It is not currently accepting answers.[详细]
2023-04-06 10:58 分类:问答Cyclomatic complexity rightfully reduced by using private methods?
Using private methods for decreasing CC by refactoring some decision points into separate methods decreases the CC of the actual method and eases reading, but does not decrease the effort to get full[详细]
2023-02-27 07:52 分类:问答How to improve Cyclomatic Complexity?
Cyclomatic Complexity will be high for methods with a high number of decision statements including if/while/for statements. So how do we improve on it?[详细]
2023-01-31 15:13 分类:问答Measuring the complexity of SQL statements
The complexity of methods in most programming languages can be measured in cyclomatic complexity with static source code analyzers. Is there a similar metric for measuring the complexity of a SQL quer[详细]
2023-01-09 00:33 分类:问答Annotations for enforcing cyclomatic complexity and LCOM constrains
At work we are using several tools to capture several metrics (mostly cyclomatic complexity and LCOM). We use those to get warning flags and to guide pre-emptive refactoring efforts. It\'s been very b[详细]
2023-01-01 21:24 分类:问答C function only called once and cyclomatic complexity
I think this question is more about style: I have an algorithm that has a very high CC (and a lot of lines!). I want to reduce it, and it\'s easy since there are pieces of code that can be grouped. Th[详细]
2022-12-30 23:11 分类:问答Cyclomatic complexity using jar files
I am working on a project which requires me to find the cyclomatic complexity of Apache ant (Versions 1.1 through 1.6). I have been asked to use the jar files for this purpose. I used a couple of tool[详细]
2022-12-16 14:08 分类:问答Code Metrics Calculation in Visual Studio
What is the prefer开发者_StackOverflow中文版ed score range for the code metrics calculation for the following[详细]
2022-12-15 18:33 分类:问答