給定一個原始碼檔案(.cs, .java),輸出該檔案的總行數、空行數、注釋行數、程式碼數

來源:互聯網
上載者:User

標籤:

public class ComputeSourceLine {public static void main(String[] args) throws FileNotFoundException {// TODO Auto-generated method stub// 定義相關變數int totalLine = 0;int emptyLine = 0;int commentLine = 0;int codeLine = 0;// 大家重點瞭解 Scanner類(網路搜尋) 與 String類(教材P75及網路) 的使用// 檔案的路徑 String strFileName;// 使用命令列的方式,如果有命令列參數,則檔案名稱從外界擷取,否則使用指定檔案// 使用方式: java ComputeSourceLine filename   (實際中用完整的檔案名稱替代filename)if(args.length>=1)strFileName = args[0];elsestrFileName = "src/ComputeSourceLine.java";// 使用Scanner進行讀檔案 Scanner sc = new Scanner(new File(strFileName));while (sc.hasNextLine()) {String strTmp = sc.nextLine();// 去掉前後的空格strTmp = strTmp.trim();// 判斷是否為空白行、注釋、程式碼if(strTmp.length()==0)emptyLine ++;else if(strTmp.length()>2 && "//".equals(strTmp.substring(0,2))==true)commentLine ++;elsecodeLine ++;// System.out.println(strTmp);          }// 關閉sc.close();totalLine = emptyLine+commentLine+codeLine;System.out.println("總行數="+totalLine);System.out.println("空行數="+emptyLine);System.out.println("注釋行數="+commentLine);System.out.println("程式碼數="+codeLine);}}

給定一個原始碼檔案(.cs, .java),輸出該檔案的總行數、空行數、注釋行數、程式碼數

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.