热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

教程:使用SourceMonitor进行代码质量分析

SourceMonitor是一款强大的代码分析工具,能够对Java、C++、C、C#和Delphi等多种编程语言进行复杂度分析,帮助开发者有效评估和提升代码质量。通过详细的指标和报告,该工具可辅助团队识别潜在问题并优化代码结构。

Source Monitor is a code analyzing tool that is capable of finding the complexity for Java, C++、C、C#、Delphi、Visual Basic and HTML source codes. It‘s a standalone software which does not rely upon any specific IDE to work. What‘s even better is that it is a Free Software. In this tutorial I‘ll show you how to install and use this convenient tool analyze some code.

1. Download Source Monitor from http://www.campwoodsw.com/sourcemonitor.html. Run the setup wizard.

技术分享

2. Click "Next" to install. Choose the installaion path, etc. Nothing unusual.

3. Open the installed software. In the welcome screen, click "Start SourceMonitor" to begin.

4. Before proceeding to analyze some code. Let‘s open the settings page and tick "allow parsing of UTF-8 files" as some of the source code files may be stored in UTF-8 format.

技术分享

5. Click "New..." to begin analyze the code. In Step1, we select the language of the code. Here "Java" is chosen as we‘re going to analyze a Java project.

技术分享

6. In Source Monitor, each analysis is seen as a "Project". In this step, we choose where to save the data files of this analysis.

技术分享

7. In Step 3, select the path of your source files.

技术分享

8. In Step 4, specify some options for this analysis. Here we choose to ignore any blank lines in the source code.

技术分享

9. In the following step, choose the desired format to save the analysis project file.

技术分享

10. Name the Project Checkpoint. Here we keep the default name, which is "Baseline".

技术分享

11. In the final step, review a summary of the project settings. If it‘s OK, click "Finish" to start the actual analysis process.

技术分享

12. Then it will ask you to choose which files to analyze. By default, it will automatically pick out all the files whose extension matches the language that we‘ve selected in Step 1. In this tutorial, as we‘ve selected "Java" in the first step, all .java files are selected automatically. Click "OK" to proceed.

技术分享

13. A moment later, the job will finish and shows a general report the whole project.

技术分享

14. Double click it will bring you to a new screen where the detailed reports of each file are shown.

技术分享

This brings the tutorial to an end. If you‘re interested in more information about Source Monitor, you can visit its official website http://www.campwoodsw.com/sourcemonitor.html

Your feedbacks and suggestions are greatly appreciated.

Source Monitor Tutorial


推荐阅读
  • 导航栏样式练习:项目实例解析
    本文详细介绍了如何创建一个具有动态效果的导航栏,包括HTML、CSS和JavaScript代码的实现,并附有详细的说明和效果图。 ... [详细]
  • 本文介绍了一款用于自动化部署 Linux 服务的 Bash 脚本。该脚本不仅涵盖了基本的文件复制和目录创建,还处理了系统服务的配置和启动,确保在多种 Linux 发行版上都能顺利运行。 ... [详细]
  • 深入理解OAuth认证机制
    本文介绍了OAuth认证协议的核心概念及其工作原理。OAuth是一种开放标准,旨在为第三方应用提供安全的用户资源访问授权,同时确保用户的账户信息(如用户名和密码)不会暴露给第三方。 ... [详细]
  • 2023 ARM嵌入式系统全国技术巡讲旨在分享ARM公司在半导体知识产权(IP)领域的最新进展。作为全球领先的IP提供商,ARM在嵌入式处理器市场占据主导地位,其产品广泛应用于90%以上的嵌入式设备中。此次巡讲将邀请来自ARM、飞思卡尔以及华清远见教育集团的行业专家,共同探讨当前嵌入式系统的前沿技术和应用。 ... [详细]
  • 优化ListView性能
    本文深入探讨了如何通过多种技术手段优化ListView的性能,包括视图复用、ViewHolder模式、分批加载数据、图片优化及内存管理等。这些方法能够显著提升应用的响应速度和用户体验。 ... [详细]
  • 本文将介绍如何编写一些有趣的VBScript脚本,这些脚本可以在朋友之间进行无害的恶作剧。通过简单的代码示例,帮助您了解VBScript的基本语法和功能。 ... [详细]
  • Explore a common issue encountered when implementing an OAuth 1.0a API, specifically the inability to encode null objects and how to resolve it. ... [详细]
  • 本文详细介绍如何使用Python进行配置文件的读写操作,涵盖常见的配置文件格式(如INI、JSON、TOML和YAML),并提供具体的代码示例。 ... [详细]
  • Linux 系统启动故障排除指南:MBR 和 GRUB 问题
    本文详细介绍了 Linux 系统启动过程中常见的 MBR 扇区和 GRUB 引导程序故障及其解决方案,涵盖从备份、模拟故障到恢复的具体步骤。 ... [详细]
  • PHP 5.2.5 安装与配置指南
    本文详细介绍了 PHP 5.2.5 的安装和配置步骤,帮助开发者解决常见的环境配置问题,特别是上传图片时遇到的错误。通过本教程,您可以顺利搭建并优化 PHP 运行环境。 ... [详细]
  • 本文介绍了在使用Visual Studio 2015进行项目开发时,遇到类向导弹出“异常来自 HRESULT:0x8CE0000B”错误的解决方案。通过具体步骤和实践经验,帮助开发者快速排查并解决问题。 ... [详细]
  • 深入理解Cookie与Session会话管理
    本文详细介绍了如何通过HTTP响应和请求处理浏览器的Cookie信息,以及如何创建、设置和管理Cookie。同时探讨了会话跟踪技术中的Session机制,解释其原理及应用场景。 ... [详细]
  • 使用 Azure Service Principal 和 Microsoft Graph API 获取 AAD 用户列表
    本文介绍了一段通用代码示例,该代码不仅能够操作 Azure Active Directory (AAD),还可以通过 Azure Service Principal 的授权访问和管理 Azure 订阅资源。Azure 的架构可以分为两个层级:AAD 和 Subscription。 ... [详细]
  • 如何在窗口右下角添加调整大小的手柄
    本文探讨了如何在传统MFC/Win32 API编程中实现类似C# WinForms中的SizeGrip功能,即在窗口的右下角显示一个用于调整窗口大小的手柄。我们将介绍具体的实现方法和相关API。 ... [详细]
  • 尽管某些细分市场如WAN优化表现不佳,但全球运营商路由器和交换机市场持续增长。根据最新研究,该市场预计在2023年达到202亿美元的规模。 ... [详细]
author-avatar
程序员老板梦
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有