View Single Post
  #57   Spotlight this post!  
Unread 07-08-2006, 15:18
LordTalps LordTalps is offline
Crimson Ninja
AKA: Pat
FRC #1885 (Robocats)
Team Role: Programmer
 
Join Date: Aug 2006
Rookie Year: 2006
Location: Skingrad
Posts: 106
LordTalps is a splendid one to beholdLordTalps is a splendid one to beholdLordTalps is a splendid one to beholdLordTalps is a splendid one to beholdLordTalps is a splendid one to beholdLordTalps is a splendid one to beholdLordTalps is a splendid one to beholdLordTalps is a splendid one to behold
Send a message via AIM to LordTalps
Re: Stupidest Programming Mistakes

Was working on the Marine Biology Study for AP Computer Science AB, and had was running through making a fish (was easy after the first 5 or 6 we made).

All of a sudden, STACK OVERFLOW? What in the world?

isolated it to a method that returned a class variable, myID. That method was one line, it couldn't be the issue. Lo and behold, it was pointed out:

public int myID()
{
return myID();
}