精確統計程式碼量(Java實現)

頭像是我偶像發表於2017-06-27

大家面試的時候有沒有被問到過這樣一個問題:


你的程式碼量是多少?


WHAT???程式碼量???我怎麼知道,難


道要我去數嗎?


下面有簡便方法實現:


方法一:

利用Eclipse開發工具可以簡單的統計一個專案裡面的程式碼行數

1、如圖1,選中開啟的一個專案右擊,選中“search”選項,出現一個彈框;


2、在圖2中的彈框中,輸入如下所示內容,點選“search”,就會出現結果;



3、結果如圖3:




方法二:

想要精確統計程式碼量,去掉空白行!去掉註釋!沒有問題啊,下面我們就用Java來實現吧,什麼都不說了,直接上程式碼:


import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;

public class CalculateRows {
    static long classcount = 0; // Java類的數量
    static long normalLines = 0; // 空行
    static long commentLines = 0; // 註釋行
    static long writeLines = 0; // 程式碼行
    static long allLines = 0; // 程式碼行
 
    public static void main(String[] args) throws Exception {
        File f = new File("D:/xampp/htdocs/Crazy"); // 目錄
        String type = ".java";//查詢什麼型別的程式碼,如".java"就是查詢以java開發的程式碼量,".php"就是查詢以PHP開發的程式碼量
        CalculateRows.treeFile(f,type);
        System.out.println("路徑:" + f.getPath());
        System.out.println(type+"類數量:" + classcount);
        System.out.println("程式碼數量:" + writeLines);
        System.out.println("註釋數量:" + commentLines);
        System.out.println("空行數量:" + normalLines);
        if(classcount==0){
            System.out.println("程式碼平均數量:" + 0);
        }else{
            System.out.println("程式碼平均數量:" + writeLines / classcount);
        }
        System.out.println("總 行數量:" + allLines);
    }
 
    /**
     * 查詢出一個目錄下所有的.java檔案
     * 
     * @throws Exception
     */
 
    public static void treeFile(File f,String type) throws Exception {
        File[] childs = f.listFiles();
        for (int i = 0; i < childs.length; i++) {
            File file = childs[i];
            if (!file.isDirectory()) {
                if (file.getName().endsWith(type)) {
                    classcount++;
                    BufferedReader br = null;
                    boolean comment = false;
                    br = new BufferedReader(new FileReader(file));
                    String line = "";
                    while ((line = br.readLine()) != null) {
                        allLines++;
                        line = line.trim();
                        if (line.matches("^[//s&&[^//n]]*$")) {//這一行匹配以空格開頭,但不是以回車符開頭,但以回車符結尾
                            normalLines++;
                        } else if (line.startsWith("/*")
                                && !line.endsWith("*/")) {//匹配以/*......*/括住的多行註釋
                            commentLines++;
                            comment = true;
                        } else if (true == comment) {
                            commentLines++;
                            if (line.endsWith("*/")) {
                                comment = false;
                            }//匹配以//開頭的單行註釋,及以/*......*/括住的單行註釋
                        } else if (line.startsWith("//") || (line.startsWith("/*")&&line.endsWith("*/"))) {
                            commentLines++;
                        } else {//其他的就是程式碼行
                            writeLines++;
                        }
                    }
                    if (br != null) {
                        br.close();
                        br = null;
                    }
                }
            } else {
                treeFile(childs[i],type);
            }
        }
    }
}



結果如下所示:




相關文章