62,623
社区成员
发帖
与我相关
我的任务
分享
if ((sessions = (String[])getParameter("sessions")) == null {
// Do something
}
String[] sessions = {"hello"};
String[] sessions = new String[]{"hello"};
String[] sessions = null;
sessions = new String[]{"hello"};