由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 有没有这样的ide功能
相关主题
在 windows下的C++开发平台是不是 Dev-C++?which gcc version is good for aix 6
Do the two statements cost the same amount of time?求GCC高手
[合集] 大拿们,问一个redhat linux下C编程 make error 139的问recommend assembly code from gcc
面试被问到G++和GCC编译器的关系Eclipse JNI问题, 拜谢
Help: Another C++ compilation error on GCCLinux Makefile: How to include cpp files in subfolder for (转载)
[合集] a C++ template question (code inside)C++ Boost怎么样,好用吗?
C++ question程序员怎么定义 ’强‘与’弱'?
tail call strange behavior on cl.exeC array
相关话题的讨论汇总
话题: error话题: ide话题: 程序员话题: thinkd话题: gcc
进入Programming版参与讨论
1 (共1页)
g*********s
发帖数: 1782
1
比如代码写好后根据编译结果纠错,ide自动把程序员的错误记下来归类。
例如 if (x==0)写成了if (x=0)算一类。
这样用到一定时候,程序员可以检查这个统计,从而意识到自己比较容易犯的错误是什
么,并有针对性
地纠正。
A******g
发帖数: 612
2
I thinkd the compiler doesn't treat if(x=0) as an error...
It is a logical error rather than a grammar error

【在 g*********s 的大作中提到】
: 比如代码写好后根据编译结果纠错,ide自动把程序员的错误记下来归类。
: 例如 if (x==0)写成了if (x=0)算一类。
: 这样用到一定时候,程序员可以检查这个统计,从而意识到自己比较容易犯的错误是什
: 么,并有针对性
: 地纠正。

l******e
发帖数: 12192
3
static code analysis
c/c++,visual studio可以
java,eclipse + findbugs可以

【在 g*********s 的大作中提到】
: 比如代码写好后根据编译结果纠错,ide自动把程序员的错误记下来归类。
: 例如 if (x==0)写成了if (x=0)算一类。
: 这样用到一定时候,程序员可以检查这个统计,从而意识到自己比较容易犯的错误是什
: 么,并有针对性
: 地纠正。

g*********s
发帖数: 1782
4
ok, not necessarily compilation error only...

【在 A******g 的大作中提到】
: I thinkd the compiler doesn't treat if(x=0) as an error...
: It is a logical error rather than a grammar error

D*******a
发帖数: 3688
5
i think GCC will warn you

【在 g*********s 的大作中提到】
: 比如代码写好后根据编译结果纠错,ide自动把程序员的错误记下来归类。
: 例如 if (x==0)写成了if (x=0)算一类。
: 这样用到一定时候,程序员可以检查这个统计,从而意识到自己比较容易犯的错误是什
: 么,并有针对性
: 地纠正。

1 (共1页)
进入Programming版参与讨论
相关主题
C arrayHelp: Another C++ compilation error on GCC
A C++ compiler related interview question[合集] a C++ template question (code inside)
*** help needed! on MATLAB GUI ***C++ question
How to tell gcc stop compiling.tail call strange behavior on cl.exe
在 windows下的C++开发平台是不是 Dev-C++?which gcc version is good for aix 6
Do the two statements cost the same amount of time?求GCC高手
[合集] 大拿们,问一个redhat linux下C编程 make error 139的问recommend assembly code from gcc
面试被问到G++和GCC编译器的关系Eclipse JNI问题, 拜谢
相关话题的讨论汇总
话题: error话题: ide话题: 程序员话题: thinkd话题: gcc