2014.2
根据C++ primer 5th edition 6.2节,有个关键理解:
When the argument value is "passed by value", the argument value is "copied", the parameter and argument are "independent";
when argument is "passed by reference", the parameter is an alias for its corresponding argument.