33
votes
16answers
1k views
What is the fascination with code metrics?
I've seen a number of 'code metrics' related questions on SO lately, and have to wonder what the fascination is? Here are some recent examples:
what code metrics convince you tha …
14
votes
14answers
710 views
Do you find cyclomatic complexity a useful measure?
I've been playing around with measuring the cyclomatic complexity of a big code base.
Cyclomatic complexity is the number of linearly independent paths through a program's source …
11
votes
14answers
2k views
How do you count your Lines of Code?
We want to invite a third party for reviewing our code and they want to know a ball park figure of number of lines of code we have in all our applications!
Depending on the coding …
9
votes
4answers
257 views
Accurately accessing VB6 limitations
As antiquated and painful as it is - I work at a company that continues to actively use VB6 for a large project. In fact, 18 months ago we came up against the 32k identifier limit. …
8
votes
14answers
349 views
What can be alternative metrics to code coverage?
Code coverage is propably the most controversial code metric. Some say, you have to reach 80% code coverage, other say, it's superficial and does not say anything about your testin …
6
votes
9answers
288 views
Code metrics
I'm just curious about what kind of code metrics people are using and opinions/experience on the most effective use of code metrics. All of our code, regardless of language, uses …
5
votes
7answers
324 views
Have you written very long functions? If so, why?
Hi,
I am writing an academic project about extremely long functions in the Linux kernel.
For that purpose, I am looking for examples for real-life functions that are extremely lo …
5
votes
4answers
186 views
Badge Concept Applied To Codebase Statistics
Stackoverflow is the first time I've seen this badges concept. It's oddly motivating, and that's pretty cool. Has anybody seen it applied to source control change sets?
I envisi …
4
votes
9answers
514 views
How many lines of code should a function/procedure/method have? [closed]
I've recently been given the unenviable task of reviewing poor code written by another developer and documenting the bad practices. (This is all for the purposes of getting out of …
4
votes
7answers
378 views
Should LOC counting include tests and comments?
While LOC (# lines of code) is a problematic measurement of a code's complexity, it is the most popular one, and when used very carefully, can provide a rough estimate of at least …
3
votes
3answers
425 views
Eclipse metrics plugin suggestion.
I'm looking for a tool to give me some code metrics (total LOCs, LOC/Class, # of external references/class, etc...).
Does anyone know a good eclipse plugin that could provide me s …
3
votes
5answers
284 views
Tips on a tool to measure code quality?
I'm looking for a tool that can provide code quality metrics.
For instance it could report
very long functions (spaghetti code)
very complex classes (which could contain do-it-a …
3
votes
9answers
311 views
As our favorite imperative languages gain functional constructs, should loops be considered a code smell?
In allusion to Dare Obasanjo's impressions on Map, Reduce, Filter (Functional Programming in C# 3.0: How Map/Reduce/Filter can Rock your World) "With these three building blocks, y …
2
votes
1answer
121 views
How to extract a single function from a source file
Hi,
I'm working on a small academic research about extremely long and complicated functions in the Linux kernel. I'm trying to figure out if there is a good reason to write 600 or …
2
votes
2answers
150 views
Code metrics and warnings for C++
I have a pretty new code base written in C++. Already I'm starting to see some bad practices creeping into the project (class file with 1000+ lines of code, functions with a lot o …
