|
Von meinem iPhone gesendet
When looking at your assertion from a "modern hardware" point of view, counting wall clock time, I agree. The difference is negligible. Double the amount of some µs is still some µs. Too fast for a human being to be detected.
If I get it right - both passing a pointer as a value or passing a variable by reference is the exact same thing - from the machine code view.
In both cases a pointer to the original variable/memory space is passed on the stack to the called procedure.
But it’s different from the compiler view - for a parameter passed by reference the compiler can do a type check. But it cannot do that for an arbitrary pointer. That’s why C has „typed pointers“.
A use case for me to "pass by value" is to "write protect" a variable. The called application now can alter the variables' contents at will. It won't get changed for the calling application.
Altering parameters that a passed to a procedure is generally „bad style“ - only if passed by reference and with full intention.
If a procedure receives a parameter by value and you modify that, this is very convenient - but also confusing.
But maybe there are other ways to get the described "readonly" feature.
Yes there is the „const“ keyword for parameters. Under normal circumstances the parameter is read only but passed as reference if the parameter type and the passed variable type are fitting. If not, a temporary copy with the right type is generated and passed by reference.
Anyway - with „const“ you have write protected parameters which are past fast by reference - and the compiler deals with the read only thing.
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.