单项选择题

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

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