统计代码总行数挺麻烦的 VS2010里虽然有Code Metrics Analyze 但这个工具只能用在托管的项目中 于是在这里找到一个小的命令行工具统计代码行数
用法很简单 如下(转自Wiki)
How to use CLOC in Windows
(1) Download the program
(2) Open command prompt
(3) Run program with syntax: <exe program> <code file dir>
(4) Program will print out a table with statictics on every programming language it can recognise in the given directory
(5) -> SLOC is the amount of "code" lines
(6) -> LOC is the sum of "blank" + "comment" + "code" lines
Simple Example
cloc-1.08.exe D:\Users\temp\code_files\my_program
21 text files.
21 unique files.
0 files ignored.
http://cloc.sourceforge.net v 1.08 T=0.5 s (42.0 files/s, 9658.0 lines/s)
-------------------------------------------------------------------------------
Language files blank comment code scale 3rd gen. equiv
-------------------------------------------------------------------------------
Java 10 518 164 1979 x 1.36 = 2691.44
CSS 3 129 28 739 x 1.00 = 739.00
PHP 5 176 128 505 x 3.50 = 1767.50
HTML 3 60 34 369 x 1.90 = 701.10
-------------------------------------------------------------------------------
SUM: 21 883 354 3592 x 1.64 = 5899.04
-------------------------------------------------------------------------------
本文介绍了一款名为CLOC的小型命令行工具,该工具可在Windows环境下帮助开发者快速统计指定目录下各种编程语言的代码行数,包括空行、注释及实际代码行数。
2241

被折叠的 条评论
为什么被折叠?



