由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 在 windows下的C++开发平台是不是 Dev-C++?
相关主题
新版的 eclipse 有什么大的改进?C++ question
Eclipse JNI问题, 拜谢tail call strange behavior on cl.exe
关于C++ STL编译的疑问求GCC高手
关于 gcc 和 g++ 的问题C++ Boost怎么样,好用吗?
Question about a C++ compilation error on Visual Studio 2005C array
面试被问到G++和GCC编译器的关系A C++ compiler related interview question
Help: Another C++ compilation error on GCCHow to compile with ddd?
[合集] a C++ template question (code inside)C++ IDE and compiler
相关话题的讨论汇总
话题: c++话题: dev话题: vc话题: int话题: windows
进入Programming版参与讨论
1 (共1页)
d********e
发帖数: 132
1
在 windows下的C++开发平台是不是 Dev-C++? 还有其他得吗?
Eclipse 好用吗?
z***e
发帖数: 5393
2
visual c++ express.

【在 d********e 的大作中提到】
: 在 windows下的C++开发平台是不是 Dev-C++? 还有其他得吗?
: Eclipse 好用吗?

d********e
发帖数: 132
3
visual C++ express 下面用的compiler 也是 g++吗?

【在 z***e 的大作中提到】
: visual c++ express.
S**I
发帖数: 15689
4
of course not

【在 d********e 的大作中提到】
: visual C++ express 下面用的compiler 也是 g++吗?
d********e
发帖数: 132
5
那在 g++下的 能拿到 visual C++ express下直接编译吗?

【在 S**I 的大作中提到】
: of course not
k*******d
发帖数: 1340
6
Usually yes.
我觉得VC你可以让他用G++做编译器的,某些地方要设置一下
b******n
发帖数: 592
7
if it can compile, it can; if it can't compile, then you need to modify the
code. it depends on what the code does.

【在 d********e 的大作中提到】
: 那在 g++下的 能拿到 visual C++ express下直接编译吗?
A******g
发帖数: 612
8
yes in most of the cases,
I know one difference,
VC compiler allows
int n=10;
int arr[n];
g++ doesn't allow, you have to use a constant to allocate memory for an array
I will change the code like,
int n=10;
int *arr;
arr =new int[n];
this works,

【在 d********e 的大作中提到】
: 那在 g++下的 能拿到 visual C++ express下直接编译吗?
S**I
发帖数: 15689
9
你用的VC版本太老了,VS 2008和2010都不允许用非常量整数初始化数组;2010和GCC很
接近了。

array

【在 A******g 的大作中提到】
: yes in most of the cases,
: I know one difference,
: VC compiler allows
: int n=10;
: int arr[n];
: g++ doesn't allow, you have to use a constant to allocate memory for an array
: I will change the code like,
: int n=10;
: int *arr;
: arr =new int[n];

p***o
发帖数: 1252
10
He means g++ by VC and VC by g++ ...

【在 S**I 的大作中提到】
: 你用的VC版本太老了,VS 2008和2010都不允许用非常量整数初始化数组;2010和GCC很
: 接近了。
:
: array

t*****n
发帖数: 4908
11
要看代码规模。
万行以下用什么都行,只要你自己不糊涂。
百万级别的话我选eclipse+cdt。它的indexer非常牛。
VC + assist x也不错,但是俺们没钱买正版。
我的常用:
Windows: eclipse 写代码,vc express 调试 (STL很爽)
Linux:: eclipse 写代码,gdb+emacs 调试。
t*****n
发帖数: 4908
12
Dev-C++ 2005 年就停止发展了
1 (共1页)
进入Programming版参与讨论
相关主题
C++ IDE and compilerQuestion about a C++ compilation error on Visual Studio 2005
const_reverse_iterator和reverse_iterator有什么区别? (转载)面试被问到G++和GCC编译器的关系
C++多线程的选择Help: Another C++ compilation error on GCC
C++ template[合集] a C++ template question (code inside)
新版的 eclipse 有什么大的改进?C++ question
Eclipse JNI问题, 拜谢tail call strange behavior on cl.exe
关于C++ STL编译的疑问求GCC高手
关于 gcc 和 g++ 的问题C++ Boost怎么样,好用吗?
相关话题的讨论汇总
话题: c++话题: dev话题: vc话题: int话题: windows