阅读量:0
在Java中,可以使用比较运算符(<, >, <=, >=)来比较两个long类型的值的大小。例如:
long a = 100; long b = 200; if (a < b) { System.out.println("a is less than b"); } else if (a > b) { System.out.println("a is greater than b"); } else { System.out.println("a is equal to b"); }
这段代码会输出"a is less than b",因为a的值为100,小于b的值200。