linux静态代码检查工具,静态代码检查工具 cppcheck 的使用

CppCheck是一个C/C++代码缺陷静态检查工具。不同于C/C++编译器及其它分析工具,CppCheck只检查编译器检查不出来的bug,不检查语法错误。所谓静态代码检查就是使用一个工具检查我们写的代码是否安全和健壮,是否有隐藏的问题。

比如无意间写了这样的代码:

intn = 10;

char* buffer =newchar[n];

buffer[n] = 0;

这完全是符合语法规范的,但是静态代码检查工具会提示此处会溢出。也就是说,它是一个更加严格的编译器。

使用比较广泛的C/C++静态代码检查工具有cppcheck    pc-lint等。

pc-lint是资格最老,最强力的代码检查工具,但是是收费软件,并且配置起来有一点点麻烦。

CppCheck 是免费的开源软件。使用起来也很方便。

使用方式:

一、GUI方式:安装完就可以使用里面的cppcheck-gui来检测代码。界面如下:

linux静态代码检查工具,静态代码检查工具 cppcheck 的使用_第1张图片

二、命令行方式:

linux静态代码检查工具,静态代码检查工具 cppcheck 的使用_第2张图片

三、集成到IDE开发环境中使用:

1、VS

click the Add button

set the Title, for example Cppcheck

set Command to C:\Program Files (x86)\Cppcheck\cppcheck.exe

set Arguments to--quiet --verbose --template=vs $(ItemPath)

set Initial Directory to $(ItemDir)

make sureUse Output window checkbox is enabled

click on the Move Up button repeatedly until your entry is at the top of the list, this will make it easier to identify you new command as you can count on it being calledTools.ExternalCommand1

click OK.

2、Qt Creator

在QtCreator中点击:tools=>external=>config...=>add 弹出如下对话框:

linux静态代码检查工具,静态代码检查工具 cppcheck 的使用_第3张图片

填入下列参数:

linux静态代码检查工具,静态代码检查工具 cppcheck 的使用_第4张图片

设置完后就可以用cppcheck检查指定目录下的代码文件:tools=>external=>cppcheck 开始检查。

你可能感兴趣的:(linux静态代码检查工具)