1.制作一个工具类的文档
javadoc -d 目录 -author -version arrayTool.java
实例:
class arrayDemo { public static void main(String[] args){ int[] arr = {23,34,54,65,57,7}; //遍历数组 arrayTool.printArray(arr); //获取数组中的最大值 int max = arrayTool.getMax(arr); System.out.println("数组中的最大值为"+max); //获取数组中元素的索引 int index = arrayTool.getIndex(arr,57); System.out.println("57在数组中的索引位置为"+index); } }
生成工具类的文档类型javac -d doc -author -version arrayTool.java/** *数组操作工具类 *@author greymouster *@version v1.0 */ public class arrayTool { /** *私有的构造方法 禁止外部实例化对象 */ private arrayTool(){} /** *遍历数组方法 遍历后为[元素1,元素2,元素3,....] *@param arr 要遍历的数组 */ public static void printArray(int[] arr){ System.out.print("["); for(int x=0;x<arr.length;x++){ if(x == arr.length-1){ System.out.println(arr[x]+"]"); }else{ System.out.print(arr[x]+","); } } } /** *获取数组中最大值的方法 *@param arr 数组 *@return 返回数组中的最大值 */ public static int getMax(int[] arr){ //加入数组的元素为最大值 int max = arr[0]; for(int x=1;x<arr.length;x++){ if(max<arr[x]){ max = arr[x]; } } return max; } /** *获取数组中值的索引 *@param arr 数组 value 数组中的值 *@return index 返回数组中值所在的索引 如果不存在返回-1. */ public static int getIndex(int[] arr,int value){ int index = -1; for(int x=0;x<arr.length;x++){ if(arr[x] == value){ index = x; } } return index; } }
时间: 2024-10-29 19:08:42