Search Results

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 …
6
votes
23answers
865 views

Is it possible to write code to write code?

I've heard that there are some things one cannot do as a computer programmer, but I don't know what they are. One thing that occurred to me recently was: wouldn't it be nice to have a class that co …
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 …
1
vote
2answers
135 views

What is a development framework? What is an IDE?

When I started programming I was using Ruby and the colorful little notepad that came with it. Since I started learning Java I've been using Eclipse, which is apparently an IDE. Now I've read a bit …
4
votes
3answers
297 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
319 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
8answers
462 views

can a variable have multiple values

In algebra if I make the statement x + y = 3, the variables I used will hold the values either 2 and 1 or 1 and 2. I know that assignment in programming is not the same thing, but I got to wonderin …
1
vote
5answers
313 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
417 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)) …
5
votes
5answers
372 views

when to pass a parameter and when to use an instance variable

How do you guys decide between keeping track of something locally and then just passing it in to every method you call on it, or declaring an instance variable and using it in the methods? …
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
450 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 2 next
15 30 50 per page