函数
时间: 2023-10-18 16:11:07 浏览: 84
Java中有很多内置的函数,也可以自定义函数。以下是一些常用的内置函数:
1. Math类中的数学函数,比如Math.abs()、Math.sqrt()、Math.pow()等等。
2. String类中的字符串函数,比如String.length()、String.charAt()、String.substring()等等。
3. Arrays类中的数组函数,比如Arrays.sort()、Arrays.binarySearch()等等。
4. Date类和Calendar类中的时间函数,比如Date.getTime()、Calendar.get()、Calendar.setTime()等等。
5. System类中的系统函数,比如System.out.println()、System.currentTimeMillis()等等。
自定义函数需要使用方法定义语法,语法如下:
```java
public static returnType methodName(parameter1, parameter2, ...){
// 方法体
return returnValue;
}
```
其中,returnType表示方法返回值类型,methodName表示方法名,parameter1、parameter2等表示方法参数,方法体中的代码实现具体功能,returnValue表示方法返回值。例如:
```java
public static int add(int a, int b){
int result = a + b;
return result;
}
```
这个函数的作用就是将传入的两个整数相加并返回结果。
阅读全文