1

Today i was presented with a wiered fact (or not)

it was said:
"At it is disallowed to write long, descriptive identifier names, and forbidden to write Comments for Linux Drivers written in ANSI C."

When i asked "WTF? Why?" i was told it caused performence issues and errors of such...
not many details there.

I am supprised, but have to ask...
Can this be real?
knowing that Comments are stripped by the compilation pre-processor,
and that Identifiers are either way converted to adresses.

so... Can it cause Problems ?

4

4 に答える 4

1

絶対違う。コードで使用した識別子が何であれ、それらはコンパイラによってシンボルに変換されます。

また、すべてのコメントはコンパイル プリプロセッサによって無視されます。

コメントの唯一の効果は、コードをより迅速に理解するのに役立つことです。

于 2013-08-13T08:31:13.603 に答える