java怎么调用函数,有哪几种形式,分别举两个例子
时间: 2023-12-27 19:04:09 浏览: 67
Java调用函数的语法格式为:方法名(参数列表)。其中,方法名是函数的名称,参数列表是函数接受的参数。Java中调用函数有以下几种形式:
1. 在同一个类中调用函数
示例代码:
```
public class Example {
public static void main(String[] args) {
int result = add(1, 2); // 调用add方法
System.out.println("1 + 2 = " + result);
}
public static int add(int a, int b) { // 定义add方法
return a + b;
}
}
```
2. 在不同的类中调用函数
示例代码:
在Test类中调用Example类中的add方法
```
public class Test {
public static void main(String[] args) {
int result = Example.add(1, 2); // 调用Example类中的add方法
System.out.println("1 + 2 = " + result);
}
}
```
在Math类中调用Java API中的Math类的sqrt方法
```
public class Math {
public static void main(String[] args) {
double result = java.lang.Math.sqrt(16); // 调用Java API中的Math类的sqrt方法
System.out.println("The square root of 16 is " + result);
}
}
```
阅读全文