人气 171

[游戏程序] J2ME数组的复制及连接操作 [复制链接]

九艺网 2017-3-10 17:00:21

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?注册

x


public class Arrays {
/**

* 构造函数私有,这样可以保证只能通过:类名.静态方法 或 类名.静态方法 来访问内部数据,

* 而不可以通过创建本类的对象来进行访问

*/

private Arrays() {

}


/**

* 复制一个跟源byte数组一样的byte数组

* @param rSource 源byte数组

* @return 跟源byte[]数组一样的byte[]数组

*/

static public byte[] copy(byte[] rSource) {

byte[] aResult = new byte[rSource.length];

System.arraycopy(rSource, 0, aResult, 0, aResult.length);


return aResult;

}


/**

* 复制一个跟源int数组一样的int数组

* @param rSource 源int数组

* @return 跟源int数组一样的int数组

*/

static public int[] copy(int[] rSource) {

int[] aResult = new int[rSource.length];

System.arraycopy(rSource, 0, aResult, 0, aResult.length);


return aResult;

}


/**

* 比较两个byte数组的内容及长度是否相等.

* @param a1 第一个byte数组

* @param a2 第二个byte数组

* @return 相等的话返回true,否则返回false

*/

static public boolean equals(byte[] a1, byte[] a2) {

if ( (a1 == null) || (a2 == null)) {

return a1 == a2;

}


int nLength = a1.length;


if (nLength != a2.length) {

return false;

}


for (int i = 0; i < nLength; i++) {

if (a1 != a2) {

return false;

}

}


return true;

}


/**

* 比较两个int数组的内容及长度是否相等.

* @param a1 第一个int数组

* @param a2 第二个int数组

* @return 相等的话返回true,否则返回false

*/

static public boolean equals(int[] a1, int[] a2) {

if ( (a1 == null) || (a2 == null)) {

return a1 == a2;

}


int nLength = a1.length;


if (nLength != a2.length) {

return false;

}


for (int i = 0; i < nLength; i++) {

if (a1 != a2) {

return false;

}

}


return true;

}


/**

* 连接两个byte数组,之后返回一个新的连接好的byte数组

* @param a1

* @param a2

* @return 一个新的连接好的byte数组

*/

static public byte[] join(byte[] a1, byte[] a2) {

byte[] result = new byte[a1.length + a2.length];


System.arraycopy(a1, 0, result, 0, a1.length);

System.arraycopy(a2, 0, result, a1.length, a2.length);


return result;

}


/**

* 连接两个int数组,之后返回一个新的连接好的int数组

* @param a1

* @param a2

* @return 一个新的连接好的int数组

*/

static public int[] join(int[] a1, int[] a2) {

int[] result = new int[a1.length + a2.length];


System.arraycopy(a1, 0, result, 0, a1.length);

System.arraycopy(a2, 0, result, a1.length, a2.length);


return result;

}
}
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

QQ|手机版|小黑屋|九艺游戏动画论坛 ( 津ICP备2022000452号-1 )

GMT+8, 2024-5-12 23:08 , Processed in 0.065405 second(s), 23 queries .

Powered by Discuz! X3.4  © 2001-2017 Discuz Team.