SUN认证 百分网手机站

J2ME数组的复制及连接操作方法

时间:2017-10-24 13:55:22 SUN认证 我要投稿

关于J2ME数组的复制及连接操作方法

  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[i] != a2[i]) {

  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[i] != a2[i]) {

  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;

  }

  }

【关于J2ME数组的复制及连接操作方法】相关文章:

1.JavaScript数组的定义及数字操作方法

2.Java数组操作方法大全

3.关于PHP实现数组队列的复制代码

4.2016年java数组操作方法大全

5.PHP中常用的数组操作方法笔记整理

6.数组与数组元素的概念

7.JavaScript中的索引数组、关联数组和静态数组、动态数组的分类讲

8.国债逆回购的操作方法及流程