Java Forums

Main Menu
Home
Today's Posts
FAQ
Search
Contact Us

Java Network
Linux Archive
Java Tips
Java Tips Blog

Sponsored Links





Welcome to the Java Forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community, you will:

  • have access to post topics
  • communicate privately with other members (PM)
  • not see advertisements between posts
  • have the possibility to earn one of our surprises if you are an active member
  • access many other special features that will be introduced later.

Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 12-18-2007, 06:28 PM
Member
 
Join Date: Dec 2007
Posts: 17
feniger is on a distinguished road
OutOfBoundsException
here's a question:
in one class I have the method:

static public StartBoard[] finalBoard()
{
StartBoard[] temp = new StartBoard[32];
.
.
.
return temp;
}

and in another class, inside the main method, I wrote:

StartBoard[] try2 = new StartBoard[32];
try2 = StartBoard.finalBoard();
for (int i = 0; i<32; i++)
System.out.println(try2[i].getType());

and I got the following runtime error:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 32
at chess.StartBoard.finalBoard(StartBoard.java:74)
at chess.Play.main(Play.java:21)

I remember learning something about "contracts" with variables to be instance of a certain non-primitive type, is that the solution? and if so, how do I use it?
thanks a head

feniger
__________________
have a good one - Day I mean...
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 12-18-2007, 06:30 PM
Member
 
Join Date: Dec 2007
Posts: 17
feniger is on a distinguished road
maybe its important to know to solve:
the first code snippet is actually inside:
public enum StartBoard {... }
__________________
have a good one - Day I mean...
Bookmark Post in Technorati
Reply With Quote
  #3 (permalink)  
Old 12-19-2007, 07:38 AM
Senior Member
 
Join Date: Jul 2007
Posts: 1,222
hardwired is on a distinguished road
Code:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 32 at chess.StartBoard.finalBoard(StartBoard.java:74) at chess.Play.main(Play.java:21)
Looks like you went past the end of the array, viz, element index 31, on
line 74 in your code.
Code:
// These //StartBoard[] try2 = new StartBoard[32]; //try2 = StartBoard.finalBoard(); // line 21 here? // can be written StartBoard[] try2 = StartBoard.finalBoard(); // This looks okay. for (int i = 0; i<32; i++) System.out.println(try2[i].getType()); ... public enum StartBoard { static public StartBoard[] finalBoard() { StartBoard[] temp = new StartBoard[32]; . . // line 74 must be in here... . return temp; }
Bookmark Post in Technorati
Reply With Quote
  #4 (permalink)  
Old 12-20-2007, 03:31 AM
Member
 
Join Date: Dec 2007
Posts: 17
feniger is on a distinguished road
thanks,
yea that was it.... I'm such a newbie
__________________
have a good one - Day I mean...
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +3. The time now is 04:37 AM.


VBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org