找回密码
 注册

QQ登录

快捷登录

新浪微博登陆

搜索
CDD 法语助手
楼主: 大将军猴子

水区抢楼活动(结束)圣诞福袜勋章一个免费试吃名额等

13190
回复
190359
查看
  [ 复制链接 ]

新浪微博达人勋

2010-12-23 21:59:13

使用道具 举报

新浪微博达人勋

public class JavaDemo09
{
        public static void main(String args[])
        {
                int i[] = new int[10] ;
                // 调用init方法就可以为数组初始化
                init(i) ;
                // 打印数组
                print(i) ;
        }
        // 声明一个方法,要求此方法可以为数组中的内容初始化内容
        // 0--> 1、1--> 2
        // 把堆内存空间的内容取出,之后在方法中进行加工
        public static void init(int x[])
        {
                // 进行数组的初始化
                for (int y=0;y<x.length;y++)
                {
                        x[y] = y + 1 ;
                }
        }
        // 定义第二个方法,此方法用于打印数组
        public static void print(int x[])
        {
                for (int y=0;y<x.length;y++)
                {
                        System.out.println("数组["+y+"] = "+x[y]) ;
                }
        }
};
2010-12-23 21:59:21

使用道具 举报

新浪微博达人勋

public class JavaDemo10
{
        public static void main(String args[])
        {
                int i[] = init(20) ;
                // 调用init方法就可以为数组初始化
                // init(i) ;
                // 打印数组
                print(i) ;
        }
        // 声明一个方法,要求此方法可以为数组中的内容初始化内容
        // 0--> 1、1--> 2
        // 把堆内存空间的内容取出,之后在方法中进行加工
        // 表示数组开辟的大小
        public static int[] init(int len)
        {
                // java中的数组是可以动态开辟的
                int x[] = new int[len] ;
                // 进行数组的初始化
                for (int y=0;y<x.length;y++)
                {
                        x[y] = y + 1 ;
                }
                return x ;
        }
        // 定义第二个方法,此方法用于打印数组
        public static void print(int x[])
        {
                for (int y=0;y<x.length;y++)
                {
                        System.out.println("数组["+y+"] = "+x[y]) ;
                }
        }
};
2010-12-23 21:59:40

使用道具 举报

新浪微博达人勋

随机随机随机
2010-12-23 21:59:44

使用道具 举报

新浪微博达人勋

2010-12-23 21:59:59

使用道具 举报

新浪微博达人勋

599不给呀?
2010-12-23 22:00:03

使用道具 举报

新浪微博达人勋

2010-12-23 22:00:10

使用道具 举报

新浪微博达人勋

public class JavaDemo11
{
        public static void main(String args[])
        {
                int source[] = {1,2,3,4,5,6} ;
                int dest[] = {11,22,33,44,55,66,77,88,99} ;
                System.out.println("------- dest数组拷贝之前 ---------") ;
                printArray(dest) ;
                // 进行数组的拷贝
                System.arraycopy(source,0,dest,0,source.length) ;
               
                System.out.println("------- dest数组拷贝之后 ---------") ;
                printArray(dest) ;
        }
        public static void printArray(int x[])
        {
                for (int i=0;i<x.length;i++)
                {
                        System.out.println("数组["+i+"] = "+x[i]) ;
                }
        }
};
2010-12-23 22:00:10

使用道具 举报

新浪微博达人勋

2010-12-23 22:00:24

使用道具 举报

新浪微博达人勋

2010-12-23 22:00:35

使用道具 举报

新浪微博达人勋

2010-12-23 22:00:47

使用道具 举报

新浪微博达人勋

2010-12-23 22:00:58

使用道具 举报

新浪微博达人勋

2010-12-23 22:01:09

使用道具 举报

新浪微博达人勋

2010-12-23 22:01:30

使用道具 举报

新浪微博达人勋

2010-12-23 22:01:57

使用道具 举报

高级模式
B Color Image Link Quote Code Smilies

本版积分规则

返回顶部