写一个java中的静态常量-1
时间: 2024-03-21 13:38:54 浏览: 53
在Java中,可以使用关键字final来定义常量,使用static修饰符将其声明为静态常量。以下是定义静态常量-1的Java代码:
```
public class Example {
public static final int MINUS_ONE = -1;
}
```
在其他类中使用该常量时,可以直接通过类名调用:
```
int num = Example.MINUS_ONE;
```
阅读全文