Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm an Android developer and the following question came to my mind: When I put a big comment in order to compiling process, is that while we put our useful comment in code , can compiler take some time at comment portion?

If no, then is it not get any effect since how long our comment?

share|improve this question

3 Answers

up vote 16 down vote accepted

can compiler take some time at comment portion?

No, you won't be able to see any measurable time difference in compile time by adding / stripping comments in a typical Java/C/C++ program.

Use comments if you believe they make the code easier to read and maintain, and don't base the decision on whether to include / exclude them on compile-time.

(Sure, the parser will need to traverse the whole file, so if you have a gigabyte-comment, you may see a difference. But typically, the time it takes to parse (and throw away the comments) is an insignificant part of a full compile.)

Further reading:

share|improve this answer
5  
@Downvoter, care to leave a comment? – aioobe Sep 6 '11 at 7:30
2  
Maybe because No, you won't be able to see any measurable time difference is not exactly an answer to can compiler take some time at comment portion?. Of course it takes time to skip over comments and possibly to remember them, and of course this should be measurable. Compilers are not magic but follow the law of physics. It is just that the difference is magnitudes below relevance in most cases. – phresnel Sep 6 '11 at 8:04

Yes, each comment that you write will make the compilation slower, because the compiler has to read more text. But: reading comments is very easy for a compiler, and it is quickly done, so you should not worry about it.

You can try it out yourself. Make a program that generates some simple source code with lots of comments in it.

int i = 0;
...
i++; /* This is a comment, and maybe a very long one. */
...

Now you can experiment with making this (generated) comment very long, possibly even megabytes. Then measure the difference when compiling the code with small and large comments, and you will see that the speed is still acceptable.

share|improve this answer
another caveat is that use of special characters in comments can also break your compilation. Read the book Java Puzzlers for an example. – Scorpion Sep 6 '11 at 7:24
You mean // use \u000A for UNIX linebreak? ;) – Roland Illig Sep 6 '11 at 7:35
you got me :-). It was an interesting one. – Scorpion Sep 6 '11 at 7:40

It takes time to read and parse these comment block but this time is so short you won't notice and anyways not an excuse not to put (extended and useful) comments in your programs :-)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.