以下哪个示例是声明以下功能的更好方法?为什么?
void myFunction (const int &myArgument);
要么
void myFunction (int myArgument);
c++
c++ ×1