const arguments question

Z

zs0723

"The importance of using const arguments increases with the size of a
program."

why using const arguments impact on the size of program?
 
V

Victor Bazarov

zs0723 said:
"The importance of using const arguments increases with the size of a
program."

why using const arguments impact on the size of program?

Perhaps you misunderstood the statement you quoted. The meaning
is "the larger the program, the more important it is that the
arguments are const[-correct]", or, to make it simpler, "in
a large program const plays bigger role for arguments".

V
 
Z

zs0723

zs0723 said:
"The importance of using const arguments increases with the size of a
program."
why using const arguments impact on the size of program?

Perhaps you misunderstood the statement you quoted.  The meaning
is "the larger the program, the more important it is that the
arguments are const[-correct]", or, to make it simpler, "in
a large program const plays bigger role for arguments".

V

thanks , i am wrong
 
A

Andre Kostur

"The importance of using const arguments increases with the size of a
program."

why using const arguments impact on the size of program?

What they're talking about is that as the size of the program increases,
presumably the complexity of the program also increases. By putting const
into your code, you are increasing the amount of documentation that is
directly in your code, and more clearly states certain assumptions about
things. This helps decrease the semantic complexity of the code. It
should make the code easier to understand for the next person reading it.
Easier to read code tends to lead to easier to maintain code.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,184
Messages
2,570,973
Members
47,529
Latest member
JaclynShum

Latest Threads

Top