6
votes
7answers
5k views
What is a stack overflow error?
I'm a complete beginner writing Breakout (the game) in Java. All was going well until I started to get a stack overflow error in the late game. Unfortunately I know that without actually putting th …
15
votes
5answers
3k views
What is a Null Pointer Exception?
What are null pointer exceptions and what causes them in general?
…
1
vote
6answers
170 views
How do I “require” a neighbour class in Java?
In Ruby I have often written a number of small classes, and had a main class organize the little guys to get work done. I do this by writing
require "converter.rb"
require "screenF …
3
votes
5answers
2k views
Entry point for Java applications: main(), init(), or run()?
So far I've been using "public void run() {}" methods to execute my code in Java. When/why might one want to use main() or init() instead of run()?
…
2
votes
7answers
426 views
How do I make for loops run side by side?
I have been working on a childish little program: there are a bunch of little circles on the screen, of different colors and sizes. When a larger circle encounters a smaller circle it eats the smal …
4
votes
3answers
298 views
when does a thread go out of scope?
I've written a program that counts lines, words, and characters in a text: it does this with threads. It works great sometimes, but not so great other times. What ends up happening is the variables …
1
vote
6answers
320 views
Choosing when to instantiate classes
I recently wrote a class for an assignment in which I had to store names in an ArrayList (in java). I initialized the ArrayList as an instance variable private ArrayList<String> names …
1
vote
5answers
316 views
method visibility between classes in java
In Java (And in general) is there a way to make a class so public that it's methods etc... are accessible from little classes all around that don't even instantiate it? Ha, what I mean is... If I h …
1
vote
5answers
422 views
What is this java.awt.event error?
ANSWER:
If you ever see these lines and are mistified like I was, here's what they mean.
Thread[AWT-EventQueue-0] (Suspended (exception NullPointerException))
…
2
votes
5answers
1k views
Casting between ArrayLists in Java
Hi
Sorry, I thought this was an inheritance question: it was an ArrayList question all along!
Ok, my problem is more specific than I thought. So I have two families of classes. Card …
0
votes
4answers
454 views
what does it mean when a bug doesn’t crash the program
The title says it all. No dire need to know, I'm just curious. Sometimes Eclipse comes up saying "hey you should debug this line!!!" but doesn't actually close the program. I can then continue to p …
1
vote
3answers
657 views
Writing a GIF file in Java
So I have this GIF file on my desktop (it's a 52 card deck of poker cards). I have been working on a program that cuts it up into little acm.graphics.GImages of each card. Now, however, I want to w …
0
votes
8answers
728 views
Why might one also use a blank constructor?
I was reading some Java recently and came across something (an idiom?) new to me: in the program, classes with multiple constructors would also always include a blank constructor. For example: …
10
votes
9answers
907 views
What is the difference between passing by reference in Java and passing a pointer in C?
I have been studying Java for a few months and am now starting to learn C.
I am a little confused, I was under the impression that passing an object by reference and passing a pointer to t …
