由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - Compiler
相关主题
C++ optimization questionint *a [] 和int (*a)[] 一样吗
Smart Parser/Compiler Development有没有独立的lgpl版权的c/cpp语言写的xml parser?
Do the two statements cost the same amount of time?About volatile in C
tail call strange behavior on cl.exe瓶颈在哪儿?
Looks like 王垠 was right about Google culturecopy constructor 问题
Python problem on 64 bit Linuxg++ default optimization error
g++ compilation problem in linuxopencv为什么不用java写???????
Haskell 大神请指教我这段程序为什么out of memoryIDL一问
相关话题的讨论汇总
话题: compiler话题: learn话题: language话题: least
进入Programming版参与讨论
1 (共1页)
c***5
发帖数: 158
1
Compiler算不算內工的一種,不会Compiler会不会影响编程能力?
w***g
发帖数: 5958
2
不会。

【在 c***5 的大作中提到】
: Compiler算不算內工的一種,不会Compiler会不会影响编程能力?
S*A
发帖数: 7142
3
一般编程不会影响。
当然会 compiler 特别是内部工作原理容易写出
比较有效率的代码。如果对效率特别讲究就有可能
要有点 compiler 的行为常识。
k**********g
发帖数: 989
4

From the user's (normal programmers) point of view, it is sufficient to:
* Learn at least one imperative programming language
* Learn at least one functional programming language
* Learn at least one dynamic or scripting language
* Learn disassembly, or introduction to CPU (registers, cache etc.)
* Learn a bunch of "terms" for compiler optimization.
Basically, knowing the types of optimizations that the compiler performs
helps you write code that executes fast.
It doesn't require one to know how to write compiler, or parser.
http://en.wikipedia.org/wiki/Optimizing_compiler

【在 c***5 的大作中提到】
: Compiler算不算內工的一種,不会Compiler会不会影响编程能力?
D*****r
发帖数: 6791
5
算吧,了解了之后,就知道compiler背着自己到底本质上在干什么,或者说知道自己到
底在干什么。
有些理论的东西,什么各种自动机啊,正则表达式啊,知道一下好像有帮助。

【在 c***5 的大作中提到】
: Compiler算不算內工的一種,不会Compiler会不会影响编程能力?
1 (共1页)
进入Programming版参与讨论
相关主题
IDL一问Looks like 王垠 was right about Google culture
请教registerPython problem on 64 bit Linux
[合集] C 编程error求教!g++ compilation problem in linux
大家都用什么工具来profile C/C++程序Haskell 大神请指教我这段程序为什么out of memory
C++ optimization questionint *a [] 和int (*a)[] 一样吗
Smart Parser/Compiler Development有没有独立的lgpl版权的c/cpp语言写的xml parser?
Do the two statements cost the same amount of time?About volatile in C
tail call strange behavior on cl.exe瓶颈在哪儿?
相关话题的讨论汇总
话题: compiler话题: learn话题: language话题: least