Which parameter passing method is used in Android? Pass by reference or Pass by Value? Please provide an Android Specific example for the same.开发者_开发知识库
All parameter passing in Java is by value.
Here is a nice article with all the details.
just like a normal Java Application:
Objects are passed by reference, primitives are passed by value
精彩评论