Hacker News new | ask | show | jobs
by karatchov 5842 days ago
Please, anyone can recommend a good tutorial to understand C++ functions arguments ? I'm starting coding in C++ and seeing this article makes me more confused.
1 comments

Just read the ABI specs. A good start is the SysV ABI (refspecs.freestandards.org/elf/IA64-SysV-psABI.pdf), although it doesn't directly cover C++.

Then, the C++ ABI is defined here - specifically, the Itanium ABI draft, which is in fact used on most GCC-supported systems, as far as I know. The "Itanium": is a misnomer. http://www.codesourcery.com/public/cxx-abi/