是否有一种简单的方法可以在不循环的情况下检查java中的字节数是否具有全部0xFF作为值?
例如
byte[] b = new byte[]{ 0xff, 0xff, 0xff, 0xff, 0xff };
if (b is all 'ff')
process?
答案 0 :(得分:4)
没有循环(显式或递归)的任何语言都无法做到这一点。即使您的CPU有特殊指令来检查模式的存储区域,它也会在内部循环。所以你的问题没有意义。
如果您要求一种有效的方法,可以采用以下方法:
如果您的数组总是具有相同的长度,则可以设置常量并使用Arrays.equals()
。如果你有几个不同的长度,但只有少数不同的长度,你可以创建几个常量。
您可以对数组进行排序并检查第一个和最后一个值。如果它们相同,那么它们之间的所有值也必须为-1。
您可以将支票移动到方法中,这意味着“检查循环”不会使代码在重要位置混乱。
您可以使用JNI访问汇编程序代码,而汇编程序代码又使用特殊说明。
其他语言为此类内容提供更好的支持。在Groovy中,您可以执行b.size() == b.count { it == -1 }
答案 1 :(得分:3)
如果您不喜欢循环,请使用递归:)
public static void test1() {
class Chk {
boolean c(int [] b, int val, int pos) {
if (pos >= b.length) {
return true;
}
if (b[pos] != val) {
return false;
}
return c(b, val, pos + 1);
}
}
Chk test = new Chk();
System.out.println(test.c(new int [] {0xff, 0xff}, 0xff, 0));
System.out.println(test.c(new int [] {0xff, 0xff, 0xff, 0xfe}, 0xff, 0));
System.out.println(test.c(new int [] {0x01, 0x01, 0x01, 0x01}, 0xff, 0));
System.out.println(test.c(new int [] {0x01, 0x01, 0x01, 0x01}, 0x01, 0));
}
答案 2 :(得分:1)
疯狂的想法,你可以用字符串匹配
来做int[] b = new int[]{0xff, 0xff, 0xff, 0xff, 0xff};
String arr = Arrays.toString(b).replaceAll(", ", "");
String match = "\\[("+new Integer(0xff).toString()+")+\\]";
System.out.println(arr);
System.out.println(match);
System.out.print(arr.matches(match));