JAVA Eclipse El%String str1 abcString str2 abc1%${str1 str2}这段代码输出的值为什么是t
JAVA Eclipse El
<%
String str1 = "abc";
String str2 = "abc1";
%>
${str1== str2}这段代码输出的值为什么是true.
[解决办法]
el 默认是从request里面取值 你在上面改变没什么作用
JAVA Eclipse El
<%
String str1 = "abc";
String str2 = "abc1";
%>
${str1== str2}这段代码输出的值为什么是true.
[解决办法]
el 默认是从request里面取值 你在上面改变没什么作用