noun
call by value; pass by value
Computing term for passing a copy of a value to a function, as opposed to passing a reference. Often contrasted with 参照渡し (pass by reference).
See also: 参照渡し
Javaでは、プリミティブ型は値渡しでメソッドに渡されます。
In Java, primitive types are passed to methods by value.