标签:nbsp oid dem demo ati rgs str java 静态
/*
静态的应用
每一个应用程序中都有共性的功能,
可以将这些功能进行抽取,能独立封装,
以便复用
*/
class Demo
{
public static void main(String[] args)
{
int[] arr = (2,4,1,8);
int max = getMax(arr);
System.out.pirntln("max"+max);
}
public static int getMax(int[] arr)
{
int max = 0;
for(int x=1;x<arr.length;x++)
{
if(arr[x]>arr[max])
max=x;
}
return arr[max];
}
}
标签:nbsp oid dem demo ati rgs str java 静态
原文地址:https://www.cnblogs.com/up-day/p/11731386.html