मैं मूल्यांकन करने की कोशिश कर रहा हूं कि क्या यह सरणी सूची खाली है या नहीं, लेकिन इनमें से किसी ने भी संकलित नहीं किया है:
<c:if test="${myObject.featuresList.size == 0 }">
<c:if test="${myObject.featuresList.length == 0 }">
<c:if test="${myObject.featuresList.size() == 0 }">
<c:if test="${myObject.featuresList.length() == 0 }">
<c:if test="${myObject.featuresList.empty}">
<c:if test="${myObject.featuresList.empty()}">
<c:if test="${myObject.featuresList.isEmpty}">
अगर कोई ArrayList खाली है तो मैं कैसे मूल्यांकन कर सकता हूं?