问题描述
- java 作业nullpointer 问题
- 有一个 java 的作业,要求写一个 linkedlist,然后在自己写的 linkedlist 基础上写段把阿拉伯数字转化成罗马数字的code。以下是我的 code:
public RomanNumeral (int number) {
intRepresentation = number;
int tempnum = number;
int tempmod = 0;
for (int i = 0; i < 13; i++) {
if (tempnum >= intvals[i]) {
nums[i] = tempnum / intvals[i];
tempmod = tempnum % intvals[i];
if (tempmod == 0) {
break;
}
tempnum = tempmod;
}
}
for (int j = 0; j < 5; j++) {
for (int k = 0; k < nums[j]; k++) {
if (roman[j] == ' ') {
list.addLast('C');
list.addLast(roman[j - 1]);
} else {
list.addLast(roman[j]);
}
}
}
for (int m = 5; m < 9; m++) {
for (int n = 0; n < nums[m]; n++) {
if (roman[m] == ' ') {
list.addLast('X');
list.addLast(roman[m - 1]);
} else {
list.addLast(roman[m]);
}
}
}
for (int p = 9; p < 13; p++) {
for (int l = 0; l < nums[p]; l++) {
if (roman[p] == ' ') {
list.addLast('I');
list.addLast(roman[p - 1]);
} else {
list.addLast(roman[p]);
}
}
}
}public int getInt () {
return intRepresentation;
}public RomanNumeral next () {
return new RomanNumeral(intRepresentation + 1);
}public RomanNumeral previous() {
return new RomanNumeral(intRepresentation - 1);
}public String toString() {
StringBuilder sb = new StringBuilder();
for (Character i : list) {
sb.append(i);
}
return new String(sb);
}
}
不知道为什么在用另一个 driver 程序运行它的时候总是在第一次出现 addlast 的时候就报错 nullpointer。换成我自己写的 linkedlist 里面的其他方法比如 addfirst ,isEmpty什么的也一样是 nullpointer。现在基本排除是 linkedlist 那一部分的问题,又看不出来这段 code 有什么问题。
求前辈指点!!!
解决方案
具体那一句话报null 了。
解决方案二:
你这个 list.addLast('C'); 中
list 是哪里来的,找找源头
时间: 2024-10-01 07:57:42