No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
I'm working on a website for my friend and we're having some problems. We have set up a table to handle the main page, which has within the table a shoutbox, news posts, and links. The news bits within the table are (obviously) longer in terms of space used up … | |
Re: Ok, to start with, this (everything between the /* and */ in front of it is something I'm saying about the code) [code] public Color() {// constructor return setColor( "" ); /* this is calling the second setColor method, not the first one. The first one would take nothing, you … | |
Re: Well first off, where do you get the error exactly? | |
Re: Result Class8C[] = new Result[10]; Class8C[1].inputData(); // I am gettin NullPointerException here You're constructing an array of 10 results, which makes sense. The error seems to be coming from the inputData method, so let's look more closely there. public void inputData() { try { System.out.println("Enter the information requested:"); System.out.println("--------------------------------"); System.out.print("Roll … |
The End.