- 论坛徽章:
- 0
|
/**
* Title: 文件操作
* Description: 文件操作
* Copyright: Vershow(China) Information Technology Co., Ltd. Copyright (c) 2008
* Company:
www.vershow.com
* @author 张建春
betterzhang@hotmail.com
* @version 1.0.0
* 1.0.0 张建春创建 July 8, 2008
*/
public class byteTest {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
int a[]={1,2,3,4,5,6};
int[] b = new int[5];
System.arraycopy(a,2,b,0,3);
for(int i=0;i
}
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/35408/showart_1723815.html |
|