📜  长最大值java代码示例

📅  最后修改于: 2022-03-11 14:52:48.061000             🧑  作者: Mango

代码示例2
/**
 * A simple application that looks up the value of Long.MAX_VALUE and outputs it to the user.
 **/
public class Test {
    public static void main(String[] args) {
        System.out.println("The maximum Long value is: "+Long.MAX_VALUE);
    }
}