由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - c vs c++
相关主题
C语言重复定义问题谁来解释一下这个是compiler问题吗?
C puzzle 一日一题关于Makefile的一个问题
怎么得到char *分配空间的大小?关于C++ STL编译的疑问
这里的牛人很多,都读过标准吗question for C++ constant
C arraya question about CAST
A C++ compiler related interview questionc++标准函数传递一问
A tech question (转载)C++ 的 问题
An interesting C++ compile error有谁知道怎么把matlab和VC联接着一起用? (转载)
相关话题的讨论汇总
话题: c++话题: exception话题: handling话题: compiler话题: catch
进入Programming版参与讨论
1 (共1页)
z******i
发帖数: 59
1
最近在做程序优化,感觉用C++比用C更容易写慢的代码
我们有段代码,没用任何try-catch,简单的compiler setting 去掉
exception handling, 快了35%.
后来决定所有要快的程序,都去掉exception handling, RTTI, 基本上
就只用C99的语法。
感觉 OO 对 embedded system 不是太管用。Compiler 也更容易优化
C 程序。
m**s
发帖数: 221
2

阿哈,赞你的头像.
确实有这个感觉,不过没接触过几种embedded system

【在 z******i 的大作中提到】
: 最近在做程序优化,感觉用C++比用C更容易写慢的代码
: 我们有段代码,没用任何try-catch,简单的compiler setting 去掉
: exception handling, 快了35%.
: 后来决定所有要快的程序,都去掉exception handling, RTTI, 基本上
: 就只用C99的语法。
: 感觉 OO 对 embedded system 不是太管用。Compiler 也更容易优化
: C 程序。

d*****a
发帖数: 110
3
Last time an invited gust speaker said try-catch is a bad thing in c++
programming, and it's an outdated thing in c time.

【在 z******i 的大作中提到】
: 最近在做程序优化,感觉用C++比用C更容易写慢的代码
: 我们有段代码,没用任何try-catch,简单的compiler setting 去掉
: exception handling, 快了35%.
: 后来决定所有要快的程序,都去掉exception handling, RTTI, 基本上
: 就只用C99的语法。
: 感觉 OO 对 embedded system 不是太管用。Compiler 也更容易优化
: C 程序。

g*****g
发帖数: 34805
4
C++ try catch is not well designed, kind of after thought.
Java's exception handling is handy.

【在 d*****a 的大作中提到】
: Last time an invited gust speaker said try-catch is a bad thing in c++
: programming, and it's an outdated thing in c time.

1 (共1页)
进入Programming版参与讨论
相关主题
有谁知道怎么把matlab和VC联接着一起用? (转载)C array
Question about a C++ compilation error on Visual Studio 2005A C++ compiler related interview question
弱问mcc和mex的区别A tech question (转载)
C++ optimization questionAn interesting C++ compile error
C语言重复定义问题谁来解释一下这个是compiler问题吗?
C puzzle 一日一题关于Makefile的一个问题
怎么得到char *分配空间的大小?关于C++ STL编译的疑问
这里的牛人很多,都读过标准吗question for C++ constant
相关话题的讨论汇总
话题: c++话题: exception话题: handling话题: compiler话题: catch