场景如下:
一般像我们在java中判断一个水果的类型都会写如下代码
class Fruit {
public final static int APPLE = 1;
}
if (a.getType = Fruit.APPLE ) {
System.out.pring("苹果");
}
而不会写如下代码
if (a.getType = 1 ) {
System.out.pring("苹果");
}
现在有如下需求:
需要在jsp中判断水果类型,由于jsp不能获取对象。
<%
使用这个new出来的对象好像只能获取变量不能获取静态变量
%>
求支招。
想要在jsp中写类似如下的代码
if (a.getType = Fruit.APPLE ) {
System.out.pring("苹果");
}