customername
私の要件は、顧客タイプのBeanのリストを、そのBeanのプロパティに従ってソートすることです...私が使用したのは、フィールドがないbeancomparator
場合でも正常に機能していることです。フィールドが..私を助けてください..のときに投げています。customername
null
NullPointerException
null
私のコードは
public class customer{
private String customername;
}
main()
{
list<customer> list=new arraylist();
//list is filled with customertype beans
comparator<customer> comp=new beancomparator(customername);
collections.sort(list,comp);//throwing error when customername is null...
}