Java学习---- 数组的引用传递
摘要:
1. public class ArrayRefDemo01{ public static void main(String args[]){ int temp[] = {1,3,5} ; // 利用静态初始化方式定义数组 fun(temp) ; // 传递数组 for(int i=0;i<temp 阅读全文
posted @ 2016-04-08 18:13 fenr9 阅读(358) 评论(0) 推荐(0) 编辑