请帮助我找到这个答案 NULL POINTER EXCEPTION ERROR HELP ME
这两行
25,83 空指针异常请更正我的代码 我参考了类linkk创建了一个对象l 访问类中的方法 但在访问具有不同条件的类中的方法时 它显示空指针异常 我没有完成代码由于这个错误即时通讯我不能移动 进一步 这是我的帖子 在溢出 我已经阅读溢出的答案,但这是 我第一次发布溢出的问题, 今天我创建了一个发布这个问题,请帮助我frnds
import java . util.Scanner;
class node
{
int i,q;
node next;
node prev;
}
class link{
public static void main(String args[])
{
linkk l = new linkk();
l.op();
int user=0;
while(user!=10)
{Scanner a=new Scanner(System.in);
if(user==1)
{
System.out.println("\nenter data\n");
l.create(a.nextInt());
}System.out.println("\n1.create link\n2.insert beginning\n3.insert middle\n4.insert end\n5.delete data\n6.reverse");
user=a.nextInt();
}
if(user==2)
l.insertbeg();
if(user==3)
l.insertmid();
if(user==4)
l.insertend();
if(user==5)
l.del();
if(user==6)
l.reverse();
if(user==7)
l.display();
}
}
class linkk
{
node temp4;
int ch,add,cnt=0,t=0,b;
node p= new node();
node q;
node last;
node first=null;
public boolean isEmpty()
{
return first == null;
}
public void insertbeg()
{
}
public void insertmid()
{
}
public void insertend()
{
}
public void del()
{
}
public void reverse()
{
}
public void display()
{
}
public void create(int val)
{
first.i=val;
first.next=null;
cnt++;
}
public void ob()
{
}
public void op()
{
}
}
答案 0 :(得分:0)
您首先定义为null为node first=null;
,并且您尝试使用first.i=val;
通过调用l.create(a.nextInt());
来使用第一个对象访问i。
您应该首先初始化如下:
node first = new node();//and then access i of it and so on.