单项选择题

在下列原型所示的C++函数中,按“传值”方式传递参数的是( )。

A.void f1(int a);
B.void f2(int *a);
C.void f3(const int *a);
D.void f4(int &a);