Taste
Posted Sep 6, 2007 12:51 UTC (Thu) by
IkeTo (subscriber, #2122)
In reply to:
Taste by lysse
Parent article:
LinuxConf.eu: Documentation and user-space API design
You focus too much on the Java side, and missed the point intended: on the C++ side, no object "creation" or "destruction" cost is needed for passing arguments by reference. The integer being passed is simply created on the stack, allocation cost shared with other variables (by just subtracting a larger number on entry of the function) or deallocation cost (it simply restore the value of the base pointer from a fixed location on the stack). What I mean is that in traditional language you can do many actions without allocating/deallocating an object. Yes garbage collection might be "fast", but they cannot beat "no cost". People doing high performance computing should know this, even though most people really should not bother too much with performance.
(
Log in to post comments)