m****y 发帖数: 986 | 1 win 7下用什么编译器比较好?以前就用过TC。。。。
谢谢 |
S*******w 发帖数: 24236 | 2 visual studio啊
【在 m****y 的大作中提到】 : win 7下用什么编译器比较好?以前就用过TC。。。。 : 谢谢
|
m*******l 发帖数: 12782 | 3 Visual studio express 2011
【在 m****y 的大作中提到】 : win 7下用什么编译器比较好?以前就用过TC。。。。 : 谢谢
|
m****y 发帖数: 986 | 4 我下了一个visual studio pro 2010,这个成么
谢谢
多年没碰过编程了
【在 S*******w 的大作中提到】 : visual studio啊
|
m****y 发帖数: 986 | 5 thx
【在 m*******l 的大作中提到】 : Visual studio express 2011
|
S*******w 发帖数: 24236 | 6 可以啊 反正就编译一下
【在 m****y 的大作中提到】 : 我下了一个visual studio pro 2010,这个成么 : 谢谢 : 多年没碰过编程了
|
s**x 发帖数: 7506 | 7
你也可以下载一个 cygwin, 用 g++.
【在 m****y 的大作中提到】 : win 7下用什么编译器比较好?以前就用过TC。。。。 : 谢谢
|
p*****2 发帖数: 21240 | |
H***e 发帖数: 476 | 9 我现在发现java真比c++要方便太多了。。
【在 p*****2 的大作中提到】 : 为什么要学C++呀?为什么不Java,C#?
|
p*****2 发帖数: 21240 | 10
是不是工作机会也多?C++以前积累的牛逼程序员应该挺多吧?
【在 H***e 的大作中提到】 : 我现在发现java真比c++要方便太多了。。
|
|
|
S*******0 发帖数: 198 | 11 免费的用 code blocks
【在 m****y 的大作中提到】 : win 7下用什么编译器比较好?以前就用过TC。。。。 : 谢谢
|
r****t 发帖数: 10904 | 12 你开始面 java position 了?
【在 H***e 的大作中提到】 : 我现在发现java真比c++要方便太多了。。
|
z******d 发帖数: 93 | 13 好东西~
为什么板里讨论问题全是用 C/C++ 编,很少人用 java 的吗?还是仅仅是因为写一大
坨 class XXX { public static void main
什么的太麻烦。。?
【在 S*******0 的大作中提到】 : 免费的用 code blocks
|
r**********g 发帖数: 22734 | 14 会用C++,才敢自称是一个程序员
会用java只能自称是java程序员
C++是人类智慧与各种各样扯淡非扯淡想法的大杂烩
【在 z******d 的大作中提到】 : 好东西~ : 为什么板里讨论问题全是用 C/C++ 编,很少人用 java 的吗?还是仅仅是因为写一大 : 坨 class XXX { public static void main : 什么的太麻烦。。?
|
l******c 发帖数: 2555 | 15 c++ 10
Java 2
C 1
【在 r**********g 的大作中提到】 : 会用C++,才敢自称是一个程序员 : 会用java只能自称是java程序员 : C++是人类智慧与各种各样扯淡非扯淡想法的大杂烩
|
h**********d 发帖数: 4313 | 16 那些C++的大牛其实都不会Java, 公司几个月前就招了几个architect和principle把我
们的legacy java server用C++重写,跟着向俄国大牛学习!哈哈,以后就无敌了
★ 发自iPhone App: ChineseWeb - 中文网站浏览器
【在 r**********g 的大作中提到】 : 会用C++,才敢自称是一个程序员 : 会用java只能自称是java程序员 : C++是人类智慧与各种各样扯淡非扯淡想法的大杂烩
|
h**********d 发帖数: 4313 | 17 要追求performance还是得C, C++那些STL和dynam mem allocate 都不让用..
★ 发自iPhone App: ChineseWeb - 中文网站浏览器
【在 l******c 的大作中提到】 : c++ 10 : Java 2 : C 1
|
l******c 发帖数: 2555 | 18 I do not like C++, which makes simle thing difficult.
C++ really needs well design, but at the beginning of the project, it's
difficult to get the whole picture.
Poor design C++ is worse than C
because C is function based, once the function is implemented, it can be
called anywhere. The poor design Class in C++ is difficult to reuse
Another big problem in C++ is Try and catch, which affects performance greately
But in C++, almost everything needs try and catch, while in the try and catch structure, basic new operation cannot be used directly, then smart pointer is used.
simple allocating one integer space NEEDs smart pointer,
ridiculous
【在 h**********d 的大作中提到】 : 要追求performance还是得C, C++那些STL和dynam mem allocate 都不让用.. : : ★ 发自iPhone App: ChineseWeb - 中文网站浏览器
|
l*****a 发帖数: 14598 | 19 then why c++ exist such a long time while still a lot people use it?
greately
catch structure, basic new operation cannot be used directly, then smart
pointer is used.
【在 l******c 的大作中提到】 : I do not like C++, which makes simle thing difficult. : C++ really needs well design, but at the beginning of the project, it's : difficult to get the whole picture. : Poor design C++ is worse than C : because C is function based, once the function is implemented, it can be : called anywhere. The poor design Class in C++ is difficult to reuse : Another big problem in C++ is Try and catch, which affects performance greately : But in C++, almost everything needs try and catch, while in the try and catch structure, basic new operation cannot be used directly, then smart pointer is used. : simple allocating one integer space NEEDs smart pointer, : ridiculous
|
q****x 发帖数: 7404 | 20 java->C++少见。
【在 h**********d 的大作中提到】 : 那些C++的大牛其实都不会Java, 公司几个月前就招了几个architect和principle把我 : 们的legacy java server用C++重写,跟着向俄国大牛学习!哈哈,以后就无敌了 : : ★ 发自iPhone App: ChineseWeb - 中文网站浏览器
|
|
|
l******c 发帖数: 2555 | 21 1. C++ lose some ground to Java and other new language
2. Most so called C++ project is in fact C code project, not C++ code.
【在 l*****a 的大作中提到】 : then why c++ exist such a long time while still a lot people use it? : : greately : catch structure, basic new operation cannot be used directly, then smart : pointer is used.
|
m*******l 发帖数: 12782 | 22 rumor?
【在 l******c 的大作中提到】 : 1. C++ lose some ground to Java and other new language : 2. Most so called C++ project is in fact C code project, not C++ code. :
|
r**********g 发帖数: 22734 | 23 C++大牛学Java 只要10 hour (max)
反过来就难说了。
C++未必最有用,却是最难最绕最考脑子的。
可以看看Boost.Spirit。
【在 h**********d 的大作中提到】 : 那些C++的大牛其实都不会Java, 公司几个月前就招了几个architect和principle把我 : 们的legacy java server用C++重写,跟着向俄国大牛学习!哈哈,以后就无敌了 : : ★ 发自iPhone App: ChineseWeb - 中文网站浏览器
|
h**********d 发帖数: 4313 | 24 well said, at first I didn't understand our new server code style, all the
C++ stuff is not allowed to use, yeah the Infrastructure needs to be C
based, anything that slows down the performance counts.
greately
catch structure, basic new operation cannot be used directly, then smart
pointer is used.
【在 l******c 的大作中提到】 : I do not like C++, which makes simle thing difficult. : C++ really needs well design, but at the beginning of the project, it's : difficult to get the whole picture. : Poor design C++ is worse than C : because C is function based, once the function is implemented, it can be : called anywhere. The poor design Class in C++ is difficult to reuse : Another big problem in C++ is Try and catch, which affects performance greately : But in C++, almost everything needs try and catch, while in the try and catch structure, basic new operation cannot be used directly, then smart pointer is used. : simple allocating one integer space NEEDs smart pointer, : ridiculous
|
h**********d 发帖数: 4313 | 25 确实,机会难得
【在 q****x 的大作中提到】 : java->C++少见。
|