由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 想自学c++,现在巨土的问题问一下
相关主题
C++ or Java谁对design pattern比较熟?
一般电面C++会问到什么专业问题?一个简单的java题
Windows下多个DLL之间memory allocation问题 (转载)Char x[] = "abc"; 是在heap还是stack上? (转载)
问几个面试题请教个C++编程思路
C++ 是有修养的成人, JAVA就是没有担当的婴儿为什么C++的constructor出错可以抛出异常,而destructor出错
现在没人玩unix programming什么情况下pass by reference比pass by pointer好?
定义一个数组, 巨简单的一个问题关于找环的那道题目
C++ Q93 - Q95A malloc/free question using C/C++
相关话题的讨论汇总
话题: c++话题: java话题: used话题: greately话题: catch
进入JobHunting版参与讨论
1 (共1页)
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
8
为什么要学C++呀?为什么不Java,C#?
H***e
发帖数: 476
9
我现在发现java真比c++要方便太多了。。

【在 p*****2 的大作中提到】
: 为什么要学C++呀?为什么不Java,C#?
p*****2
发帖数: 21240
10

是不是工作机会也多?C++以前积累的牛逼程序员应该挺多吧?

【在 H***e 的大作中提到】
: 我现在发现java真比c++要方便太多了。。
相关主题
现在没人玩unix programming谁对design pattern比较熟?
定义一个数组, 巨简单的一个问题一个简单的java题
C++ Q93 - Q95Char x[] = "abc"; 是在heap还是stack上? (转载)
进入JobHunting版参与讨论
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 - 中文网站浏览器

相关主题
请教个C++编程思路关于找环的那道题目
为什么C++的constructor出错可以抛出异常,而destructor出错A malloc/free question using C/C++
什么情况下pass by reference比pass by pointer好?One question about Void pointer (转载)
进入JobHunting版参与讨论
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++少见。
1 (共1页)
进入JobHunting版参与讨论
相关主题
A malloc/free question using C/C++C++ 是有修养的成人, JAVA就是没有担当的婴儿
One question about Void pointer (转载)现在没人玩unix programming
BOOST里的shared ptr比stl里的auto ptr好在哪里呢?定义一个数组, 巨简单的一个问题
问个STL的 list和 vector的问题C++ Q93 - Q95
C++ or Java谁对design pattern比较熟?
一般电面C++会问到什么专业问题?一个简单的java题
Windows下多个DLL之间memory allocation问题 (转载)Char x[] = "abc"; 是在heap还是stack上? (转载)
问几个面试题请教个C++编程思路
相关话题的讨论汇总
话题: c++话题: java话题: used话题: greately话题: catch