Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: Article: Re: Common Java Mistakes

  1. #1
    Super Moderator helloworld922's Avatar
    Join Date
    Jun 2009
    Posts
    2,896
    Thanks
    23
    Thanked 619 Times in 561 Posts
    Blog Entries
    18

    Default Article: Re: Common Java Mistakes



  2. #2
    Member
    Join Date
    Jan 2024
    Posts
    38
    Thanks
    0
    Thanked 1 Time in 1 Post

    Default Re: Article: Re: Common Java Mistakes

    The issue in the provided code is that the neighbors array is not initialized when a Node object is created. Therefore, when trying to access myNode.neighbors[0], a NullPointerException occurs because neighbors is still null.

    To fix this, you need to initialize the neighbors array either when declaring it or in the constructor. Here's the modified code:
    public class Node {
    public Node[] neighbors;
    public int value;

    public Node(int value) {
    this.value = value;
    // Initialize neighbors array to an appropriate size
    this.neighbors = new Node[5]; // Assuming a maximum of 5 neighbors
    }
    }

    public class NodeTester {
    public static void main(String[] args) {
    Node myNode = new Node(5);
    myNode.neighbors[0] = new Node(3);
    }
    }
    Now, when you create a Node object, its neighbors array will be initialized, and you won't encounter a NullPointerException when accessing its elements. You can find more assistance with Java assignments on https://www.programminghomeworkhelp....va-assignment/

Similar Threads

  1. Common Java Mistakes
    By helloworld922 in forum Java Programming Tutorials
    Replies: 15
    Last Post: August 4th, 2014, 12:54 PM