vote up 6 vote down star
1

Can you recommend free tools for calcualting cyclomatic complexity. Looking for all languages.

One tool/language per answer please.

flag

Thanks for this question, I was about to ask it myself. – MasterPeter May 17 at 18:26

8 Answers

vote up 7 vote down check

I use the metrics plugin for eclipse which calculates the complexity of your code. besides the cyclomatic complexity it can handle:

  • McCabe's Cyclomatic Complexity
  • Efferent Couplings
  • Lack of Cohesion in Methods
  • Lines Of Code in Method
  • Number Of Fields
  • Number Of Levels
  • Number Of Locals In Scope
  • Number Of Parameters
  • Number Of Statements
  • Weighted Methods Per Class
link|flag
There! I was going to ask whether there is perhaps an Eclipse plugin that would do just that. Thanks for this tip. +1 – MasterPeter May 17 at 18:27
vote up 1 vote down

For C# I use Dev Metrics.

link|flag
1  
it only supports .net 1.x... are you still using that old of a .net version? – Max Schmeling Jun 11 at 16:40
the company is no longer doing business, and only .NET 1.x is supported. this tool is probably not relevant anymore – Marchy Dec 8 at 23:36
vote up 3 vote down

Sounds like you're asking for the Wikipedia link ;)

link|flag
vote up 2 vote down

I very good tool for .NET platform is NDepend and you also have a option in Visual Studio Team Systems (Under the Analyze menu in VS.NET)

link|flag
vote up 2 vote down

For C# I use SourceMonitor. It's not as elegant as I would like (it doesn't look at project files; it only looks at directories so if you've got old unused files lying there SourceMonitor will still pick it up and measure its CC) but it's free!

link|flag
vote up 1 vote down

A rather old free command line tool for C++ is cyclo I have used it succesfully on Linux and Windows for listing up the complexity of source files.

link|flag
vote up 3 vote down

Checkstyle plugin for Eclipse (Java)

link|flag
vote up -1 vote down

Can anyone send me source code for calculating Cyclomatic complexity of Java code in C#...???

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.