这个java程序怎么出现错误怎么解决?

Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException

第1个回答  2017-12-27
教你一个通用方法,以后再出现“java.lang.NullPointerException”,就要明白,是因为调用了一个object的方法 && 此object的reference为null;
比如说
String a=null;//a即为一个String类型的reference
a.trim(); //这行代码就会报“java.lang.NullPointerException”错
//误;本回答被网友采纳
相似回答