使用Java查找基元数组中的最大/最小值
编写一个函数来确定数组中的最小/最大值是很简单的,例如:
/** * * @param chars * @return the max value in the array of chars */private static int maxValue(char[] chars) { int max = chars[0]; for (int ktr = 0; ktr < chars.length; ktr++) { if (chars[ktr] > max) { max = chars[ktr]; } } return max;}
但这不是已经在某处做过的吗?
手掌心
德玛西亚99
慕标琳琳
相关分类