51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 4770|回复: 0
打印 上一主题 下一主题

[求助] 用pclint9对C++做的代码检查错误如何解决

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2011-8-30 16:31:06 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
本帖最后由 lixue2011 于 2011-8-31 09:02 编辑

大家好:
     小妹刚开始学习使用pclint进行代码检查,以下是用pclint9做的静态代码检查结果以及开发人员的分析处理结果,请各位大侠帮忙看一下有没有什么更好的见解或处理方式:
stdafx.h包含以下头文件:
#include <Gdiplus.h>
#include <tlhelp32.h>
#include <Wincrypt.h>

#include <string.h>
extern "C"  
{  
        #include <hidsdi.h>
        #include <setupapi.h>
}  
#include <Dbt.h>
#include "Define.h"
#include "Func.h"

handler.h包含以下头文件:

#include "wmltypes.h"

handler.cp包含以下头文件:
#include "stdafx.h"
#include "handler.h"
#include "util.h"
#include "entities.h"
#include "wml.h"
#include "goudian.h"
#include "jiaofa.h"
#include "deck.h"
#include "pair.h"
#include "bind.h"
#include "parse.h"


--- Module:   E:\PClint\MiniPayII\handler.cpp (C++)
                    strdup (wml->getted_data);
E:\PClint\MiniPayII\handler.cpp(61): error 1055: (Error -- Symbol 'strdup()' undeclared, assumed to return int)
E:\PClint\MiniPayII\handler.cpp(61): error 64: (Error -- Type mismatch (assignment) (char * = int))
开发解释:在VC中已经间接地包含了头文件,所以不需要处理。

                wml->opt_tail->text = strdup (wml->getted_data);
E:\PClint\MiniPayII\handler.cpp(69): error 64: (Error -- Type mismatch (assignment) (char * = int))
开发解释:在VC中已经间接地包含了头文件,所以不需要处理。
HtmlCtrl.cpp包含以下头文件:
#include "StdAfx.h"
#include "HtmlCtrl.h"

--- Module:   E:\PClint\MiniPayII\HtmlCtrl.cpp (C++)
    DECLARE_MESSAGE_MAP();
E:\PClint\MiniPayII\HtmlCtrl.h(26): error 19: (Error -- Useless Declaration)
开发解释:这是VC中标准的定义消息映射的写法,不是错误

        varLanguage.vt = VT_BSTR;
E:\PClint\MiniPayII\HtmlCtrl.cpp(43): error 1013: (Error -- Symbol 'vt' not a member of class 'tagVARIANT')
E:\PClint\MiniPayII\HtmlCtrl.cpp(43): error 40: (Error -- Undeclared identifier 'vt')
E:\PClint\MiniPayII\HtmlCtrl.cpp(43): error 63: (Error -- Expected an lvalue)
//在VC中vt确实是tagVARIANT的成员,不是错误
                    hr = frameOut.pdispVal->QueryInterface(IID_IHTMLWindow2,reinterpret_cast<void**>(&spChildWindow));
E:\PClint\MiniPayII\HtmlCtrl.cpp(77): error 48: (Error -- Bad type)
E:\PClint\MiniPayII\HtmlCtrl.cpp(77): error 10: (Error -- Expecting a structure or union)
E:\PClint\MiniPayII\HtmlCtrl.cpp(77): error 1013: (Error -- Symbol 'QueryInterface' not a member of class '')
E:\PClint\MiniPayII\HtmlCtrl.cpp(77): error 1055: (Error -- Symbol 'QueryInterface' undeclared, assumed to return int)
开发解释:这是Windows编程标准的“查询接口”的方法,不是错误

                    frameOut.pdispVal->Release();
E:\PClint\MiniPayII\HtmlCtrl.cpp(88): error 48: (Error -- Bad type)
E:\PClint\MiniPayII\HtmlCtrl.cpp(88): error 10: (Error -- Expecting a structure or union)
E:\PClint\MiniPayII\HtmlCtrl.cpp(88): error 1013: (Error -- Symbol 'Release' not a member of class '')
E:\PClint\MiniPayII\HtmlCtrl.cpp(88): error 1055: (Error -- Symbol 'Release' undeclared, assumed to return int)
开发解释:这是Windows编程标准的“查询接口”的方法,不是错误
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

本版积分规则

关闭

站长推荐上一条 /1 下一条

小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

GMT+8, 2024-11-15 23:22 , Processed in 0.066972 second(s), 27 queries .

Powered by Discuz! X3.2

© 2001-2024 Comsenz Inc.

快速回复 返回顶部 返回列表